Forum: Visual Basic 4 / 5 / 6 Mar 14th, 2006 |
| Replies: 0 Views: 6,190 I have a brand new computer which was freshly loaded with Visual Basic 6.0. I have copied all the code from the previous computer to this new one.
But loading a project produced the following... |
Forum: Visual Basic 4 / 5 / 6 Mar 12th, 2006 |
| Replies: 3 Views: 2,353 What value type is Global in Visual Basic?
If I have something defined like this:
Global ErrorStatus&
And I have know what data type this is. I have heard that the compiler sets the data... |
Forum: Visual Basic 4 / 5 / 6 Mar 10th, 2006 |
| Replies: 1 Views: 1,108 I want to have a nested scrollable area (with buttons and controls) inside a dialog. Is this easy to do in Visual Basic? |
Forum: Visual Basic 4 / 5 / 6 Mar 7th, 2006 |
| Replies: 1 Views: 2,156 I changed the function type from Private to Public and it works. |
Forum: Visual Basic 4 / 5 / 6 Mar 7th, 2006 |
| Replies: 1 Views: 2,156 This has to be a simple question to answer. And I know how to do this in C++ but I don't know how it is done in Visual Basic. So I am not completely lost. It is just that Visual Basic is pretty... |
Forum: Visual Basic 4 / 5 / 6 Mar 1st, 2006 |
| Replies: 1 Views: 5,383 In C you can declare a function like this
int average( int first, ... )
Where the ellipses denote a variable argument list.
If I have a function like that in a c++ DLL and I want to link a Visual... |
Forum: Visual Basic 4 / 5 / 6 Feb 7th, 2006 |
| Replies: 2 Views: 2,413 I need suggestions for creating a Help system for a Visual Basic Program.
We have a requirement to provide "on-line help" to our Visual Basic program. What I believe they mean is the sort of Help... |
Forum: Visual Basic 4 / 5 / 6 Jan 28th, 2006 |
| Replies: 3 Views: 2,840 Can programs written in Visual Basic be designed such that they can read and write Unicode Files? |
Forum: Visual Basic 4 / 5 / 6 Jan 14th, 2006 |
| Replies: 3 Views: 4,627 How do I declare a string and pass it from a Visual Basic GUI to a C++ DLL?
Now I am debugging successfully. I can debug either on the Visual Basic end or I can debug on the C++ side by using the... |
Forum: Visual Basic 4 / 5 / 6 Jan 11th, 2006 |
| Replies: 3 Views: 4,627 Visual Basic and C++ and Debug and DLLs
Here is the problem I am having now. I have a C++ DLL that seems to work just fine. It has been tested with function calls from a executable written in... |
Forum: Visual Basic 4 / 5 / 6 Jan 11th, 2006 |
| Replies: 1 Views: 1,505 How do I save my break points in VIsual Basic? I am experiencing the frusturation of setting the break points and then, if the program crashes and VB shuts down, the break points are lost.
I... |
Forum: Visual Basic 4 / 5 / 6 Jan 10th, 2006 |
| Replies: 2 Views: 4,675 'Here is my declarations:
Declare Function atxml_ReadCmds Lib "AtXmlApi_Dbg.dll" (ByVal resourceName As String, _
ByVal ReadBuffer As... |
Forum: Visual Basic 4 / 5 / 6 Jan 9th, 2006 |
| Replies: 4 Views: 1,882 Is anyone up to a challenge?
I have some problems linking to a C++ DLL with a VB program.
The program has this error:
Run-time error '13'
Type mismatch
It crashes at a line of code that... |
Forum: Visual Basic 4 / 5 / 6 Jan 2nd, 2006 |
| Replies: 1 Views: 10,901 In Visual Basic 6 I have written a program to read and write to a file. It works fine. Now I have to do the same for binary data since the information I write to the file has end-of-line and return... |
Forum: Visual Basic 4 / 5 / 6 Dec 27th, 2005 |
| Replies: 1 Views: 4,408 Is it difficult to write to the system clipboard?
Also, once that is done, how about launching Notpad from VB and dynamically doing a paste (I guess via DDE) from VB code? |
Forum: Visual Basic 4 / 5 / 6 Dec 20th, 2005 |
| Replies: 3 Views: 33,212 I have seen some sample code in VB which shows some methods of opening and reading from a file.
But what about the GUI side of things? When the user runs the program, I want him/her to be able to... |
Forum: Visual Basic 4 / 5 / 6 Dec 20th, 2005 |
| Replies: 3 Views: 33,212 How does one create the process where a user can open (select) a file to read from? In C++ there are already classes to inherit from. Do I have to make a file open form from scratch in VB? |