Forum: VB.NET Jun 23rd, 2008 |
| Replies: 7 Views: 6,469 litMsg is a "literal", a Server Control from the toolbox/Web Forms Tab.
When you first posted the thread you wrote
"And in Page_Load.." and "Response.Write"
so I thought your application... |
Forum: VB.NET Jun 18th, 2008 |
| Replies: 4 Views: 1,120 Sorry, I do not understand what you mean with "Importing some API"
The RT must be able to instantiate a class named "CrystalReport1", else the line
Dim objRpt As New CrystalReport1
cannot... |
Forum: VB.NET Jun 18th, 2008 |
| Replies: 4 Views: 1,120 Maybe it is because there is no report (=class) "CrystalReport1" in your project. |
Forum: VB.NET Jun 14th, 2008 |
| Replies: 7 Views: 6,469 In most cases you would use a dataset object to keep a copy of database data inside your program, then insert, change and delete the rows in the dataset and, when done, you would use dataadapters to... |
Forum: VB.NET Jun 12th, 2008 |
| Replies: 2 Views: 1,406 one problem is the comma before the WHERE.
Replace
& "CS = @NewCS, " _
& "WHERE fldUser = @OldfldUser " _
by
& "CS = @NewCS " _ |
Forum: VB.NET Jun 10th, 2008 |
| Replies: 7 Views: 6,469 Think it is an ASP.NET application. I made some changes, marked with XXX. On my system it works. Maybe the changes help you to get your program to work. Databaseprogramming is a wide area.
... |
Forum: VB.NET Jun 9th, 2008 |
| Replies: 1 Views: 2,417 The following code replaces the CR+LF that separates the lines in a multiline textbox by a text that will hopefully never be entered by any user.
I tested this with german culture settings.
... |
Forum: VB.NET Jun 3rd, 2008 |
| Replies: 2 Views: 2,181 Do you want to
1) step throgh all rows of Table1, and show the row when there is no row with the same path AND filename in Table 2
2) and then do the same vice versa?
If yes, and DBMS is MS... |