Forum: VB.NET Jun 2nd, 2006 |
| Replies: 6 Views: 3,256 sorry for my late reply.
The code provided is a code snippet only. You have to have the connection and command object declared and instantiated first before action can be perform to write to the... |
Forum: VB.NET May 29th, 2006 |
| Replies: 9 Views: 16,468 right click your project on the Solution Explorer window, click Add, New Item , look for Splash Screen in template window, give it a name and click Add button and your splash screen is ready for... |
Forum: VB.NET May 29th, 2006 |
| Replies: 2 Views: 10,379 hi randycena,
I am not sure of the purpose of your code as your description is brief and I assumed that you wish to read a text file and extract certain string from the file. If we just take the... |
Forum: VB.NET May 29th, 2006 |
| Replies: 6 Views: 3,256 I think you get it wrong with the Insert method here. The Insert method here is from the String class and is for you to insert a string at a give position in the string instance. So it will not... |
Forum: VB.NET May 27th, 2006 |
| Replies: 1 Views: 1,075 ADO.Net is a component to develop database driven application but not a database application itself. SQL is a generic named for database driven language and it's a not a web application. It's a... |
Forum: VB.NET May 27th, 2006 |
| Replies: 6 Views: 3,256 If you use the ADO.Net in your application you can use the the DBCommand object to update your database. The DBCommand object
has a property named CommandText that can be used to set the SQL command... |
Forum: VB.NET May 27th, 2006 |
| Replies: 3 Views: 1,554 hi NN
VB.Net is not difficult to learn though. If you have learned or programmed VB before (VB6), you should have the foundation already. The major different of VB6 and VB.Net is VB.Net now is... |
Forum: VB.NET Apr 18th, 2006 |
| Replies: 1 Views: 1,611 Creating a record is a better option to keep track the customer,dat/time and staff who respond to the call. Using a text file may giving you headache later as there's no relationship that can be... |
Forum: VB.NET Apr 14th, 2006 |
| Replies: 3 Views: 1,423 why not using Visual Basic 2005 Express Edition (you can download from Microsoft website) with .Net Framework 2.0 |
Forum: VB.NET Apr 14th, 2006 |
| Replies: 1 Views: 911 Wrong channel mate. This forum is for Vb.Net |
Forum: VB.NET Apr 14th, 2006 |
| Replies: 1 Views: 858 There are a lot of differences between VB 6 and VB.Net ,even though you still have the base Basic syntax in VB.Net . In VB.Net everything is object and you will be do a object oriented programming.... |
Forum: VB.NET Mar 17th, 2006 |
| Replies: 4 Views: 2,019 Try to use the Timer object from the toolbox instead of declaring your own Timer object. If you declare a Timer object you should also create an instante of that object. Your code does not make an... |