| Thread | Last Post | Replies |
|
| Richtextbox drag-drop functionality | 27 Nov 2003 09:16 GMT | 2 |
I have a small program (I have vb6 sp3) that uses a RICHTEXTBOX control to view the contents of a custom- encrypted file. The program is functioning with a simple TEXTBOX control,
|
| Icons in a module | 27 Nov 2003 02:08 GMT | 4 |
Does anyone know how to use an icon in the Project Properties (for the icon in Explorer) when all the project consists of is a module? I cannot find any help in the help files. I'm using VB5 (no service packs) and no forms or controls.
|
| pointer | 27 Nov 2003 01:47 GMT | 1 |
what is the difference between the next two declarations (in a class module). dim Iimage as image dim Oimage as object
|
| Making wav file from raw data | 27 Nov 2003 00:01 GMT | 5 |
I am sampling an audio signal with a high speed A-D and storing the data in a file. This is simply a stream of numbers representing the amplitude of the sampled waveform over time. I would like to convert this steam of data into a .wav file so the
|
| Copying files | 26 Nov 2003 21:20 GMT | 1 |
Hi - I'm leaning VB & in one of my programs I want to copy a file from one directory to another In good old DOS I'd just write a batch file with Copy c:\Fred\test.txt c:\Joe\
|
| Limiting Mouse Cursor Movement | 26 Nov 2003 21:15 GMT | 2 |
I'm trying to limit the movement of the mouse cursor in using a VB app. The idea is to stop the cursor straying on to the second monitor of a dual screen set-up (i.e. a projector) while this program is running. I've found and have been working with Knowledge Base Article 179192
|
| commondialog.showfont doesn't work | 26 Nov 2003 20:34 GMT | 2 |
I want to use the ShowFont-methode from a CommonDialog, but it gives an error : Run-time error 24574 - No fonts exist I'm using VB6.0 with Windows XP-professional...
|
| convert Excell files | 26 Nov 2003 20:15 GMT | 1 |
Is there any way to have VB6 programmatically convert an embedded Excell file into a text file (or any sequential file)? I am relatively new to VB6 and none of the books I have consulted have the solution. Thanks in advance. Dave
|
| not enough memory | 26 Nov 2003 20:12 GMT | 4 |
I get an error Nr. 7 on some PCs. The error discription is that there is not enough memory on the PC. But there is enough !! Does anybody has any solution ?
|
| plz help | 26 Nov 2003 20:05 GMT | 1 |
The question is off the topic but.... I have 32 MB text file (dictionary) I want to divide it to some groups .It's big so I can't copy it .How can I solve that problem? thx to all
|
| Troubles with async WinINet... | 26 Nov 2003 19:13 GMT | 4 |
Does anyone know a secret to initializing WinINet? As soon as I call InternetOpen() passing it INTERNET_FLAG_ASYNC, my program is doomed to crash. Even if I then IMMEDIATELY called InternetCloseHandle(), the app will hang for a moment and then usually
|
| Read text from web (url) | 26 Nov 2003 19:08 GMT | 8 |
I want to read some text from a web-site from within a MS-Word 97 VBA macro. What I want to do is to provide a web-site on our intranet with just a number on it. This number will be increased each time the page is
|
| line method in picturebox control problem | 26 Nov 2003 16:22 GMT | 6 |
I have a simple problem that's stumping me. I'm trying to outline a picturebox control (pb) by drawing 4 lines using the Line method. sh = pb.ScaleHeight sw = pb.ScaleWidth
|
| number of dimensions in a multi-dimension array | 26 Nov 2003 15:55 GMT | 1 |
Is there a way to find out what is the number of dimensions of an array variable. Lbound(var, n) gets the lowerbound of the nth dimension of variant array var Ubound(var, n) gets the upperbound of the nth dimension of variant array var But how to get the total number of dimensions ...
|
| Imposing upper limit in textbox | 26 Nov 2003 15:52 GMT | 5 |
I would be grateful for some help with the following code, please. Private Sub txtCBR_KeyPress(KeyAscii As Integer) 'allow only numerical values through and limit maximum value to 15000. If KeyAscii <> 8 Then 'Allow BACKSPACE through
|