Posts
 
Reputation
Joined
Last Seen
Ranked #865
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
78% Quality Score
Upvotes Received
3
Posts with Upvotes
2
Upvoting Members
3
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
4 Commented Posts
0 Endorsements
~5K People Reached
About Me

My mom told me one time when I was 6 I had to use the washroom. When I got to the bathroom the toilet seat was down so i went in my pants. The point of the Story is I am not the type of person who can disturb the order of things just so i can shit comfortably.

Favorite Tags
Member Avatar for siji44

To clear it might not be the best way to go, but there are others ways to get a desired result. try using [code]Me.PictureBox.Hide()[/code] or [code]Me.PictureBox.Visible = False[/code] those both would do the trick. Hope that helps.

Member Avatar for lil09romeo
0
127
Member Avatar for mike.mclennan

I was wondering if anyone has taken the time to go see Spiderman 3 yet. I have seen it twice already. In my opinion it was a decent movie, Sandman was cool, The New Goblin was really well done, but Venom... VENOM. The ultimate Spiderman villain was terrible done and …

Member Avatar for john.cooper
0
397
Member Avatar for someoneelse

the problem is most likely you are using AutoPostBack on the ASP button object which will reload the page you are on and reset it to the default, which is the first page. The way I usually work around this is my creating my own form button object and use …

Member Avatar for sarawuthappy
0
1K
Member Avatar for mike.mclennan

Hey, I have created a searcher on my companies website that displays products that we sell. It displays the code, price, blah blah blah. basic stuff. but anyways i want to display some information for the product not on the page but on a tooltip like screen. I know a …

Member Avatar for araghuc
0
172
Member Avatar for olodu

what your asking is a pretty easily completed task. what you need to do make a new select statement with a user defined variable. see below [code] Select MovieId, MovieTitle, MovieDesc From Movies Where MovieTitle = [COLOR=red][B]@myTitle[/B][/COLOR] [/code] that @myTitle tells the TableAdapter that the value of @myTitle will be …

Member Avatar for Fritzeh
0
770
Member Avatar for mike.mclennan

I have created a new XML file and schema that is used to run sql scripts but I am having a problem doing a few things. below is an example of what I am hoping to create. XML file. [code] <root> <script> <name> Script for Upgrading </name> <file> C:\Files\Scripts\Upgrade.sql </file> …

0
83
Member Avatar for roryt

I always found that as long as you have a good base design. title, body, menubar, header, footer, blah, blah, blah any design can go over top of it smoothly and easily. Is that not what CSS was made for. I mean just look at [url]http://www.csszengarden.com/[/url]. Recently I have been …

Member Avatar for MidiMagic
0
184
Member Avatar for mike.mclennan

Windows VS Mac - The War No One Cares About Ok, first I want to make one thing clear; I am and have always been a PC user, that is just what has always been available to me. But this does not mean that I have not used any other …

Member Avatar for joshSCH
0
424
Member Avatar for mike.mclennan

I am bored so here is my post. List your top 5 favorite movies, your pleasure movies, the ones you can watch over and over again. The movies you watch when your drinking or bored. But just 5, keep the list small. 1. Layer Cake 2. Donny Darko 3. Fear …

Member Avatar for lasher511
0
458
Member Avatar for usershan

There could be a few problems. the best idea is to use the debugger to see what value the if statement is actually comparing. use F9 to create a break point and then just move through the code. The debugger is the most powerful tool available to any programmer. but …

Member Avatar for usershan
0
80
Member Avatar for rims

the easiest way to do this would be to create a new fill method for the DataTable that controls your datagrid. In this fill method set a user defined variable. Then you can use the selected Value from your ComboBox to select that defined variable. Then it is just a …

Member Avatar for rims
0
255
Member Avatar for ArchanaB

again. I am not to clear about what exactly you are saying. But if you create a DataGrid it usually create its won functions for Add, Update and Delete (the DataGrid CRUD methods). you can do one of 2 things: 1. remove the ability to delete using the datagrid controls …

Member Avatar for ArchanaB
0
166
Member Avatar for die nadel

obviously this is an ASP.NET message board if i am not mistaken. But it seem that you are sending the Update Method a string ("me"), if you set your update command as default it should except strings, integers, bool as default values for each item in the table. maybe you …

Member Avatar for die nadel
0
99
Member Avatar for BalagurunathanS

[code]Me.CustomersDataGridView.Rows(1).Cells(3).Selected() = True[/code] this is used to selected a row or a cell in the DataGrid [code]Me.CustomersDataGridView.SelectedCells(0).Style.ForeColor = Color.Coral[/code] This can used to to change the Style (backcolor, font color, etc....) of the now selected cells. I am sure you can do the work to figure out which of the …

Member Avatar for mike.mclennan
0
85
Member Avatar for mike.mclennan

[code] var ie4 = (document.all) ? true : false; var ns4 = (document.layers) ? true : false; var ns6 = (document.getElementById && !document.all) ? true : false; function openDesc(text) { if (ie4) { document.all["Description"].style.visibility = "visible"; document.all["TitleClose"].style.visibility = "visible"; } if (ns4) { document.layers["Description"].visibility = "show"; document.layers["TitleClose"].visibility = "show"; } …

Member Avatar for mike.mclennan
0
107
Member Avatar for NewVBguy

I am unsure what you are looking for but in VB.net you have the ability to ad a Bind to a table in your Database to a Combo Box and then you can set a Display member and Value from that table. So for instance if you had a table …

Member Avatar for NewVBguy
0
88
Member Avatar for jerryseinfeld

[code] for(a=1;a<i;a++) { yyy = (y[a-1]- y[a]); xxx = (x[a-1]- x[a]); slope[a-1]=yyy/xxx; } yyy = (y[i-1]- y[0]); xxx = (x[i-1]- x[0]); slope[i-1]=yyy/xxx; for(b=1;b<i;b++) { yyy = (slope[b-1]+slope[b]); xxx = (1-slope[b-1]*slope[b]); angle = yyy/xxx; res = acos(angle) * (180/3.14); printf("%d. Angle %f\n",b,res); } yyy = (slope[i-1]+slope[0]); xxx = (1-slope[i-1]*slope[0]); lastangle = …

Member Avatar for Salem
0
77
Member Avatar for mike.mclennan

I am working with ASP.NET, C# and SQL Server. What I am trying to do seems simple enough, but is causing me alot of problems. I am trying to set up my DataGrid so that is updates only when i press the Update button. It is pulling information from 5 …

Member Avatar for mike.mclennan
0
102
Member Avatar for jerryseinfeld

I am really not sure what you are asking but the "I have a project about some stupid math calculations" caught my eye. If you are working on a Programming Project I can assume you are taking a programming course. Programming is math (basically) so saying some stupid match calculation …

Member Avatar for linux
0
84