| Thread | Last Post | Replies |
|
| datagrid - invalid row number | 29 Aug 2004 22:51 GMT | 1 |
i am using datagrid in my application. i just loop thru the datagrid using ApproxCount property. the total no of rows is 18. but its getting error on 15th row. the error i am getting 'Invalid row number any idea whats the problem Thank raj
|
| Ubound behavior with Split vs. ReDim | 29 Aug 2004 22:49 GMT | 2 |
I have a perplexing problem in Visual Basic 6.0. I am trying to implement a Parse function that is similar to Split, but which treats string elements delimited by quotes as a single item, so that I can parse command lines properly.
|
| Removing added ActiveX controls at runtime | 29 Aug 2004 21:38 GMT | 2 |
I've been able to write code to add an activeX control (.ocx) during runtime to my project. I used Set c = Controls.Add("sp_test.sp_test_obj", "test1", frmMain.PicBack)
|
| get ip address from router | 29 Aug 2004 21:19 GMT | 1 |
i have a cable modem hooked up to a router the IP addrress gets renewed every once in awhile how can I, with vb, log into the router, password protected, and find out this IP address?
|
| How can another program use a procedure/function in mine? | 29 Aug 2004 17:17 GMT | 8 |
I have a program sitting running on a machine. Its a bog-standard .exe. How can another program run one of the procedures or functions the first one uses? If its just a standard app, I guess it can't be added as a reference or component in the second program, and its not a dll so I ...
|
| How to Get Data From A Machine Having Parameters of Vehicles | 29 Aug 2004 16:01 GMT | 9 |
Can anyone guide me how to retrieve values from a Machine which holds the value of a vehicle, any piece of eg. code'll b good thanks
|
| Send ESCAPE command to printer | 29 Aug 2004 13:14 GMT | 1 |
I have a pin Printer, in manual I found, how I set the pagelength with Escape command in Basic for DOS. The command is following (set pagelength to 7 inch): LPRINT Chr$(27); "C"; Chr$(0); Chr$(7);
|
| Automatically switching between open apps/files | 29 Aug 2004 12:13 GMT | 1 |
Hi and hello First time posting to this VB group I need to develop a fast method of switching automaticaly through the files or applications open on a PC for display on a plasma screen. Basically I want to perform the keystroke Alt+Tab every 30 seconds or
|
| Subscript Out of Range Error | 29 Aug 2004 05:22 GMT | 30 |
The following line causes an error 9 (subscript out of range) error. ReDim Preserve CurrMenu.MenuItems(1 To CurrMenu.nMenuItems) CurrMenu.nMenuItems is 19. The error goes away if I change the line to: ReDim Preserve CurrMenu.MenuItems(CurrMenu.nMenuItems)
|
| linking in VB 6.0 | 29 Aug 2004 05:19 GMT | 1 |
I am new to Visual Basic 6.0 and I would like to know how to add a button that when clicked will send you to another program or page. Thank You.
|
| Selecting Proper Varibles? | 29 Aug 2004 04:13 GMT | 2 |
I'm new VB and programming all together, but I'm getting he hang of it. My question is; I'm writting a program to figure square feet and yards when the user inputs "Length in feet and inch ( seperate boxes), Width in feet and inches
|
| data files in Windows INI format | 28 Aug 2004 21:32 GMT | 2 |
I've been handed an application that uses files in Windows INI format to persist record type data. They're using these files almost like you might XML. I need to write a VB app (separate app) that accesses and modifies these files as if they were a database, and would like to ...
|
| Focus event | 28 Aug 2004 21:22 GMT | 3 |
I know how to set focus to a control and determine if that control has lost focus but cannot find a means of determining if a specific control actually has the focus. For example, I have the following routine
|
| number of different characters between 2 strings | 28 Aug 2004 17:29 GMT | 2 |
I'm looking for a function (built-in or user) that will spit back the amount of characters as an integer that are different between 2 strings. It must be position and length sensitive, meaning that if there is an "E" at position 2 in string one, and an "E" at position 4 in string ...
|
| MDI Form Question | 28 Aug 2004 17:21 GMT | 3 |
I am trying to add another MDI form to my project and will not allow me. I was assuming that you could have multiple MDI forms in a project. Is there a way around this? Thanks
|