| Thread | Last Post | Replies |
|
| Inline assembly | 29 Nov 2004 17:08 GMT | 3 |
Does VB6 support inline assembly? I can't finding anything in the help files so I have a sneaky suspicion it doesn't, but no harm in asking... Thanks!
|
| Formatting time and date strings... | 27 Nov 2004 19:05 GMT | 4 |
I am trying to create a string using both time and date however I want to do it WITHOUT the punctuation! Example, normally time and date would look like: 23:32:12 11/27/2004 But I want: 23321211272004 as my result.
|
| passing up arrays to functions | 26 Nov 2004 10:45 GMT | 13 |
i have an array, and I wish to pass it to a function dim vz(1 to 5, 1 to 28) as integer sub test(byref var) msgbox(var(1,1))
|
| "Option Strict On" chooses the wrong overload | 25 Nov 2004 22:44 GMT | 1 |
to return data from a SQLDataReader, there are two overloads. The first expects a Long Parameter (the column number), The second wants a String parameter (the column name I'm strying to use the second overload (using a string), but option Strict
|
| Inserting a date field into SQL Server table | 25 Nov 2004 09:42 GMT | 1 |
Based on a recordset i have an insert statement that adds records to a SQL Server table. This works fine except for the date field. It doesn't matter what date is returned in my recordset the value that gets inserted into the table is always 01/01/1900
|
| updateable recordset based on SQL 2000 table | 25 Nov 2004 08:34 GMT | 5 |
I have a recordset and I want to take the contents of this recordset and insert the records into a SQL 2000 table. Unfortunately I get the following error on the AddNew statement in my code. How can I get round this? Below is the code I was using.
|
| VB vs. SAS | 24 Nov 2004 14:13 GMT | 6 |
Hello, all, I work in a SAS shop. A good part of my work is with SAS AF, with which object-oriented programming can be done. A number of people in my area are trying to get VB installed. They
|
| Sending e-mail | 24 Nov 2004 12:43 GMT | 4 |
This code is from the book "Programmer's Reference Visual basic 6". when it runs I get the error "Sub or Function not defined" what am I missing?
|
| Run a VB program from a VB program | 22 Nov 2004 16:34 GMT | 2 |
What is the best way to run a VB program from a VB program Thanks Ian M
|
| Excel column increment | 22 Nov 2004 15:28 GMT | 4 |
I have a question concerning placing data into a column in Excel. I am generating a set of small tables that must be placed side by side in an Excel (2003) spreadsheet. The items of the first column are quite easy, I just navigate my recordset having definded the column, something ...
|
| how to export the result | 21 Nov 2004 12:19 GMT | 8 |
I have a sp in SQL and I want to export the results to a Fixed Width Text file ( I can create a recordset) In Access I would simply right a little code to export the query using a pre-defined specification.
|
| Can't Assign Array to Variant in Array | 19 Nov 2004 12:29 GMT | 3 |
I want to assign an array to another array's element like: Dim ar1(2) Dim ar2$(2) ar2(0)="Hello,"
|
| Accessing "Page Order" and "Print on Both Sides" properties in Printer Common Dialog box | 18 Nov 2004 16:10 GMT | 1 |
Dear VB Experts, We are working in VB6 and also using FarPoint Spread control. While sending print from the application, printer common dialog box is first displayed allowing the user to define/set print properties.
|
| Insert " (double quotes) into a string | 18 Nov 2004 09:08 GMT | 28 |
I am making an application in Visual Basic which generates HTML code. I need to output: parameter="vanue" in a text field. I use variables but i cannot insert " into a string because it is the closing tag.
|
| how to check if FTP failed | 15 Nov 2004 21:54 GMT | 2 |
I have a VB program that will use SHELL function to call a Windows FTP/ Dos Batch program and upload files. After successfully uploaded my files, I will move those files into History folder. How can I check if the uploading process failed (Internet is down and can't connect) Or is ...
|