- Strength to Increase Rep
- +4
- Strength to Decrease Rep
- -1
- Upvotes Received
- 3
- Posts with Upvotes
- 2
- Upvoting Members
- 3
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
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.
Re: 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. | |
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 … | |
Re: 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 … | |
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 … | |
Re: 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 … | |
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> … | |
Re: 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 … | |
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 … | |
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 … | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: [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 … | |
[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"; } … | |
Re: 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 … | |
Re: [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 = … | |
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 … | |
Re: 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 … |