| Thread | Last Post | Replies |
|
| How set TreeView to right to left | 30 Oct 2005 06:59 GMT | 2 |
I have a problem to set a standard TreeView control to right to left direction. In VB6 there is no such property, but in VB.NET the existing one does not works. Is there any possibility to set VB6 TreeView control to right to left
|
| On Friday's Only... | 30 Oct 2005 03:38 GMT | 7 |
I have a small vb file that I run in Windows Scheduler to remind the user to perform a backup to a locally installed database. Since the user needs to be logged on to run the job, I wanted to fire the job At Login but only on Fridays. Here is the code I am trying to use but I ...
|
| Passing Data Between Different Apps | 30 Oct 2005 02:55 GMT | 2 |
I have a VB6 app that launches a C# app for the user to interact with. The C# app gets user input for the VB6 app. The reason fot the app to be written in C# is because the form is highly configurable with many different controls being added and removed based on user input. It ...
|
| Bitwise Operator Help | 29 Oct 2005 20:47 GMT | 4 |
I am trying to understand an example where the Least Significant Bit is replaced. The code is in C# and I am having problems with a line that reads: B= (byte) (Value == 1 ? B | (1 << poss) : B & ~ (1 << poss)); here B is the byte where we change the bit (Value) and poss = 0
|
| change shortcut icon | 29 Oct 2005 18:44 GMT | 1 |
Whats the recommended method of changing the icon of a shortcut (shell link) to another icon image? Thanks
|
| BlockInput Failed~ Help!! | 29 Oct 2005 14:42 GMT | 11 |
The winapi BlockInput function dunno why... not really function well... in Visual Basic 6.... BlockInput True or
|
| MySql/VB .NET --> Updating/printing | 29 Oct 2005 14:12 GMT | 1 |
I have a MySql database. this database has two tables (customers and Invoices). I created a VB .NET application which allows me to access the database. I created a tabcontrol. The first tab is invoices, second tab customers
|
| Microsoft Internet Controls! | 29 Oct 2005 12:22 GMT | 1 |
I am using the component Microsoft Internet Controls (WebBrowser) & am encountering some problems. In the "Properties" window, I have set the "AddressBar", "MenuBar" & "StatusBar" properties of the WebBrowser control as True but when I run
|
| Folder/Drive existance | 29 Oct 2005 11:02 GMT | 3 |
Currently, I am using FileSystemObject to check the existance of a specific folder (or drive). The functions I'm using are objectname.FolderExist(folderpath) objectname.DriveExist(drivename)
|
| Animated GIF! | 29 Oct 2005 10:16 GMT | 2 |
I want to place an animated gif in my VB6 application which makes use of the Microsoft Internet Control (WebBrowser). Before posting my query, I had gone through a few posts on this topic wherein a few people have said that as such, animated gifs cannot be loaded in a Form
|
| CPU is too fast when saving file to hard drive! | 29 Oct 2005 09:51 GMT | 13 |
I have the following problem: FileCopy File1, File2 'copy Out.txt into Out.bak If Dir(File2) <> "" Then Call TrimLogFile(File1, File2, "Out")
|
| User control questions | 29 Oct 2005 09:47 GMT | 10 |
I have a user control in which I have some code as follows: Private Sub UserControl_Paint() On Error GoTo ErrHandler If UserControl.Ambient.UserMode And (Not bInitDone) Then
|
| Counters | 29 Oct 2005 03:22 GMT | 15 |
In vb6, How can I create a "counter" that keeps track of the number of times an application had been opened, without showing the user a file the he can delete?
|
| Weird behavior in VB6sp6 | 29 Oct 2005 03:20 GMT | 4 |
The left shift key on my keyboard sometimes sticks for just a second. The other day I was writing code and it stuck when I was typing ".Top"... And It turned out ".TOp" Now that I diddnt catch this mistake and VB diddnt catch it...
|
| Moving to beginning of a text file in vbscript | 29 Oct 2005 01:08 GMT | 7 |
I want to open a text file and read all the info in there. then instead of closing and opening it to get to the start, I want to "rewind" to the beginning. ?? Any help or suggestions would be appreciated.
|