Forum: VB.NET Jun 23rd, 2008 |
| Replies: 7 Views: 6,344 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,104 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,104 Maybe it is because there is no report (=class) "CrystalReport1" in your project. |
Forum: VB.NET Jun 18th, 2008 |
| Replies: 3 Views: 2,291 Could it be that the file does not only contain PL/SQL? Comments in PL/SQL are
/* comment
comment */
or
-- comment
Calling PL/SQL from VB .NET may basically be performed by executing the... |
Forum: VB.NET Jun 14th, 2008 |
| Replies: 7 Views: 6,344 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 14th, 2008 |
| Replies: 1 Views: 438 I did not analyze the algorithm. Concerning the types that are used:
If a program needs to perform many append operations on a string, using a stringbuilder object may be faster than using a string... |
Forum: VB.NET Jun 12th, 2008 |
| Replies: 2 Views: 1,378 one problem is the comma before the WHERE.
Replace
& "CS = @NewCS, " _
& "WHERE fldUser = @OldfldUser " _
by
& "CS = @NewCS " _ |
Forum: VB.NET Jun 11th, 2008 |
| Replies: 1 Views: 1,367 Did you check rows.count before and after adding the row?
console.Writeline( "Rows.Count {0}", DsMembers.Members.Rows.Count )
Do you assign the result of the find to a datarow?
Dim rowFound... |
Forum: VB.NET Jun 10th, 2008 |
| Replies: 7 Views: 6,344 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,330 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 6th, 2008 |
| Replies: 1 Views: 9,832 Maybe its possible but I never read code that used a stringreader to feed the DataRowCollections.Add Method. Typically a DataRow generated by the tables NewRow method or an array of objects is used... |
Forum: VB.NET Jun 5th, 2008 |
| Replies: 3 Views: 938 But if the DA has the commands, why do you call the Command Builder?
In order to check why the DA cannot save DS's changes to the DB, I would try to find out
- which of the tables in the... |
Forum: VB.NET Jun 4th, 2008 |
| Replies: 3 Views: 938 After instantiation of the command builder: do the Commandtext properties of DA.UpdateCommand, DA.InsertCommand and DA.DeleteCommand contain the required SQL commands?
P.S.: DS.GetChanges... |
Forum: VB.NET Jun 4th, 2008 |
| Replies: 2 Views: 1,678 Maybe this is useful:
http://www.astahost.com/info.php/c-net-web-timer-control-tutorial_t6605.html |
Forum: VB.NET Jun 3rd, 2008 |
| Replies: 2 Views: 1,091 There seems to be some logic in the access DB engine to recognize that 31 cannot be the number of a month. But not enough to recognize that Feb 31th is very unusual.
maybe VBA documentation is... |
Forum: VB.NET Jun 3rd, 2008 |
| Replies: 2 Views: 2,127 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... |