| Thread | Last Post | Replies |
|
| Unique Listbox Sort Order | 22 Sep 2006 02:49 GMT | 5 |
I would like to sort the contents of a listbox... The items in the listbox are alphanumeric strings, either all Upper Case or all Lower Case What is the easiest way to sort the listbox with all lower case items listed
|
| vbChecked, vbUnchecked, vbYesNo, vbCrLf, etc. | 22 Sep 2006 02:12 GMT | 3 |
What are these "vb" properties called? I'm looking for something that lists what they all are and what their appropriate usage is. Thanks! Darhl
|
| Any tips for unloading large collection? | 22 Sep 2006 01:19 GMT | 4 |
We have recently run into a scalability problem with our current ActiveX DLL built in VB6. This DLL consists of a three level collection hierarchy. We have calculated over 100,000 objects are being loaded in memory by our users. Initializing is OK, Terminating is horrible.
|
| Visual basic 6 , Tab pages, Database | 21 Sep 2006 23:40 GMT | 2 |
I have a problem with my program, if someone could help me, I would be really grateful of him. here is my story: I am writing a program with VB6 which is connected to a Database (Access
|
| VB6 Newbie - Progress Bar | 21 Sep 2006 23:27 GMT | 11 |
I'm new to VB6, and I would like to add a progress bar for an entire procedure. The procedure has several database connections which serve sql queries. It also imports and exports text files. I would like a progress bar to incriment through the entire process of the procedure.
|
| Seeing DLL code in different VB instance | 21 Sep 2006 21:26 GMT | 7 |
I want to debug and trace a DLL project. I open two instance of VB. One is the DLL project. Another one the the standard EXE main project. I want to step into and trace the code of the DLL project code when main application call the DLL code. After running the
|
| Adding Code to a Command Button Added At Run Time | 21 Sep 2006 20:08 GMT | 11 |
I have a poject with a form which has a Command Button, Text Box, and Label control added to it at run time. It has taken me at least three hours (I'm extremely new at programming) to figure out how to add the three controls to my form at run time. Once I finally figured out ...
|
| VB2003 - load web browser in a form | 21 Sep 2006 18:47 GMT | 10 |
I am a new VB programmer asked to write a program that is more difficult than my current ability. Would like to create a web browser window that runs within a form. I know how to create a VB program that will open IE with a specific URL,
|
| DirectSS | 21 Sep 2006 18:39 GMT | 1 |
HI again: I am using DirectSS to give my program audio instructions. When I have more than one line of text for DirectSS to read, it acts as if it jumps to the last line and reads only the last line. Does anyone have experience with this
|
| User Control Lose Focus | 21 Sep 2006 16:21 GMT | 3 |
I've got a form with several user controls loaded. My question... can a specific User Control lose focus... not the specific elements contained on the user control, but the entire control itself. Maybe more specifically, the user control form has the LostFocus event...
|
| Combo box values based on selection in another combo box | 21 Sep 2006 16:17 GMT | 5 |
I have an Access app that I am attempting to port over to VB6 so I distribute it to people that don't have Access on their machine. This function works great in Access, but I can't get it to work in VB6. I have a combo box called cboFilterCriteria that has a list of 8 values.
|
| cant paste in C++ | 21 Sep 2006 16:14 GMT | 4 |
i can copy text prom C++ but i cant paste it to C++ why?? if i copy from C++ i can paste to another app. thnks.
|
| Does .maxlength work here? | 21 Sep 2006 14:59 GMT | 3 |
Private Sub Text1_KeyPress(Index As Integer, KeyAscii As Integer) If KeyAscii <> 8 Then If KeyAscii < 47 Or KeyAscii > 57 Then KeyAscii = 0 End If
|
| Windows does not recognize "." as decimal separator; | 21 Sep 2006 14:20 GMT | 26 |
Hi! I have made a program in VB6 and it works fine. the problem is that on some computers the output is wrong. the system does not recognize "." as decimal separator and "-" as a character when I put it between "". Why is that? I have checked the regional settings and everything ...
|
| RTF printing problem | 21 Sep 2006 14:13 GMT | 10 |
I'm printing a RichTextBox's formatted contents. It prints everything just fine, but only the top half of the last line on a page. I tried this: Printer.Orientation = vbPRORPortrait
|