| Thread | Last Post | Replies |
|
| System.ComponentModel.Design.DesignSurface question | 25 Jul 2007 23:59 GMT | 5 |
In an application that has a custom form designer, via the System.ComponentModel.Design.Design surface class, I need to be able to turn off Snaplines, turn on the grid, set snap to grid etc. In searching around I've found a number of references so the DesignerOptionService but ...
|
| Waiting for a process to Finish (Threading) | 25 Jul 2007 23:16 GMT | 3 |
I have having issues with threading. Below is the code I am running: 'Prints the word doc myWordApp.ActivePrinter = cboPrintList.SelectedItem myWordApp.PrintOut()
|
| query delimiters | 25 Jul 2007 23:06 GMT | 10 |
I have a query and am inserting fields into a table. Works usually. I delimit the fields with single quotes ('). The problem is some fields (row(0) or row(1)) have single quotes. What to do? Dim strSQL As String = "INSERT INTO tbl_All_X12 (field1, field2) " & _
|
| Stringbuilder and tostring | 25 Jul 2007 22:17 GMT | 8 |
A very weird problem here. The toString method does not convert the whole StringBuilder elements. I find out it is because there are a series of this " " inside the stringbuilder. Any idea how to replace those characters. I try to replace
|
| Using XML to store user data | 25 Jul 2007 21:24 GMT | 3 |
Hey Guys.. I'm just now starting to learn VB 2005, but I have a question that might help me in the long run. I hope to write applications which store user data, and without wanting the user to always have an MS SQL
|
| Auto-update function | 25 Jul 2007 21:07 GMT | 3 |
How can I program an automatic detection, download and install into my application Jan
|
| Control know when moved | 25 Jul 2007 20:46 GMT | 6 |
Is there any way for a control to know when its location moved? and OnEvents or such?
|
| Programmatically changing a Data Source's connection property | 25 Jul 2007 17:58 GMT | 2 |
I hope I worded the subject correctly. Under VS2005, I have created the wizard to add a datasource that connects to my SQL2005 server. I ran through the wizard and this created a Dataset, a BindingSource and TableAdpater.
|
| binarywriter.write loop is causing 100% cpu | 25 Jul 2007 17:44 GMT | 1 |
I have some files that are basically a TIF with an ASCII header. I wrote an app that reads in the file, pulls some values from the header and writes out everything after the header as a new file. I'm using binaryreader and binarywriter.
|
| Division Error? | 25 Jul 2007 17:43 GMT | 2 |
I just came across this weird division result with VB.NET. 2/3 = 0.66666666666666663 With VB6, I get 2/3 =0.666666666666667
|
| Convert a string to a date | 25 Jul 2007 17:08 GMT | 6 |
Why CDate(#24/04/2007#) works but, CDate("#24/04/2007#") doesn't? It says: index out of bounds. Index of what matrix?
|
| ExecuteNonQuery | 25 Jul 2007 17:04 GMT | 8 |
Shouldn't the ExecuteNonQuery be TRUE if it finds a record and FALSE is not? I get FALSE all the time and I seeded the database with the email address. I just want to check if record exist before moving on. If this doesn't work I guess I could load a datatable and check to see if
|
| Possible to put 'stream' character data into a string without creating a temporary fixed-sized buffer? | 25 Jul 2007 16:59 GMT | 4 |
I do a webrequest and it returns some text data in a stream. I want to put this text data into a string. I've got it working just fine, but I have to put the text data into into a fixed-size buffer BEFORE I put it into a
|
| How do Dynamically Connect to Web Service? | 25 Jul 2007 16:22 GMT | 1 |
Hi Guies, I want to develop windows application in VB.NET and need help regarding web services. I will get list of web service URL's from my app.config file and i
|
| Compare two DataRows | 25 Jul 2007 15:32 GMT | 2 |
I need to compare two complete datarows. In C# it is a simple matter of if (datarow1 == datarow2) .... But, if I try If DataRow1 = Datarow2 then.... I get an error stating that the "operator '=' is not defined for type system.data.datarow.
|