| Thread | Last Post | Replies |
|
| FSO problems | 13 Dec 2003 20:17 GMT | 4 |
I'am using VB6 with SP5 and running windows XP. My program has been going great until I deceided to use FSO to read and write text files. Now VB shuts down or a window pops up telling me VB must close (send report). Has anyone heard of a problem with FSO. Should I read and ...
|
| Optional Option Explicit | 13 Dec 2003 11:40 GMT | 10 |
It seems strange that the first thing people do to correct code posted by others is to put Option Explicit at the start of it. Now I'm all for people wanting to use this feature, and I'm not having a go at anyone who does, but is it absolutely necessary to tell someone to correct ...
|
| Replace comdlg32 and/or mscomctl | 13 Dec 2003 11:24 GMT | 7 |
Is there any code out there to replace the Open File dialog in the common controls? Or, I would like to just make sure that the Explorer item in the context menu doesn't appear when the user right clicks on a folder. Any ideas?
|
| Ugh. VB math bug?! =( | 13 Dec 2003 07:20 GMT | 3 |
Try this: Sub Main() Dim F As Double F = Log(3) / Log(3)
|
| VB.NET Events NOT Firing | 13 Dec 2003 01:54 GMT | 1 |
After installing my program on Windows XP I run the program and my Application Events do not fire unless I manually Click on the Control. Actually non of the events fire after the form is loaded.
|
| user.dat | 12 Dec 2003 20:26 GMT | 1 |
In an app I've written, there is a slight pause (just like calling Sleep) about 2 minutes after startup, and it appears that either the user.dat or system.dat files are being modified (at least the time stamps appear to corroborate that). Anyone have any idea what that
|
| date format error | 12 Dec 2003 17:32 GMT | 3 |
function Foo(tmp_str as variant) tmp_str = Format$(tmp_date, "dd/mm/yy") end function sub main()
|
| Reading button press from another event | 12 Dec 2003 17:23 GMT | 6 |
Is it possible? I have a procedure running which needs to know if a certain command button has been pressed. I had thought of setting a global boolean variable that can be read from anywhere and would be set to True if the command event was triggered. Is there any other way, or have ...
|
| How to upload setup.exe to my website? | 12 Dec 2003 16:57 GMT | 4 |
I have created a setup.exe for my VB6 app (2.6 M) using the Inno Setup compiler. How do I upload it to my website using WS_FTP Pro? And what HTML code do I need at my webpage for distributing free downloads? Dan
|
| stopping a "For Each" loop at EOF | 12 Dec 2003 16:50 GMT | 5 |
I'm formatting data in a text file using a "For Each aPara" statement along with a "Next aPara." How do I make the thing stop when it reaches the end of the file, rather than starting again at the top of the file and looping forever? Thanks, I'm new at this.
|
| Using a module | 12 Dec 2003 16:46 GMT | 2 |
This may sound very basic. I have built a very long procedure with way too many Ifs etc. I wonder if it is possible to transfer at least some of the contents to modules so in case an if condition is satisfied the procedure to be followed will be in a module. As an example, let me ...
|
| timer | 12 Dec 2003 14:08 GMT | 1 |
hallow all i'm facing a problem with timers here i'm using a timer to read inputs from an interface card. now, if an input is 1 some outpust have to be 1(you can select this with
|
| Urgent ==> MSCOMM | 12 Dec 2003 13:40 GMT | 5 |
Hi I am working on the MSCOMM Component . I am trying to send 1.0 through the line . I convert 1.0 into HEX which is 3F800000. Not i convert this into
|
| The Saga Continues: TStringList.cls | 12 Dec 2003 10:05 GMT | 20 |
Well, J French, Here's your idea in my hands, scary isn't it. I created a Module to Track all my Objects, but I did it using a Class that I had created... Its the coveted (at least by me) "TStringList" from Delphi. This is probebly recreateing the wheel but I have instantly found it ...
|
| Tabs | 12 Dec 2003 08:06 GMT | 4 |
Is it possible to have a form with tabs at the top e.g. like the Display Properties Menu within Windows? How do I go about it?
|