| Thread | Last Post | Replies |
|
| newbee - How do REAL programmers unload | 02 Mar 2005 23:11 GMT | 6 |
1. what are the arguments for Form_QueryUnload(Cancel as Integer,UnloadMoad as integer) 2. what is relationship between the form_Unload and Form_QueryUnload and when to use which.
|
| Returning a form to it's original position after HIDE and SHOW | 02 Mar 2005 22:16 GMT | 5 |
I move a form to the top left corner of my screen and then I do a me.hide. When I do a me.show, the form centers itself again. What is the easiest way to return the form to the screen position it was before I hide it?
|
| Developing on NTFS | 02 Mar 2005 21:59 GMT | 1 |
I have just moved from FAT32 to NTFS on WinXP SP2 machine, what precaution I should take to make sure that my vb6sp6 apps continue to work correctly irrespectively of the file system the users are using. I don't use P&D wizard for deployment, I use innosetup and neither I
|
| can't quit application. | 02 Mar 2005 21:36 GMT | 10 |
[Resetting of Date Stamp] Memo to JS - Check your clock - you seem to be about a month ahead of the rest of us. --
|
| opening text file in notepad | 02 Mar 2005 20:58 GMT | 2 |
I want to open particular text file in notepad.. so code should launch notepad and open that text file ne help would be appreciated... thnx
|
| Shortcut Icon on MDI | 02 Mar 2005 20:55 GMT | 2 |
Is it possible to add ShortCut Icon on MDI Form like desktop shortcuts? if yes how?
|
| VBA with excel - amount of monthdays | 02 Mar 2005 20:52 GMT | 2 |
I need to find out the amount of days in a month with VBA for excel. The command needs to be linked with a sheet in another workbook. If the cell within the sheet shows i.e.
|
| Stored Procedures | 02 Mar 2005 20:48 GMT | 5 |
How do I query a parameterised stored procedure from VB? My stroed procedure is like this ********************************* CREATE PROCEDURE sp_tblTEST_EMPLOYED @from as datetime, @to as datetime AS
|
| vba complete guide | 02 Mar 2005 20:42 GMT | 6 |
I am looking for a complete structured guide for visual basic for applications available on the internet. I have searched high and low for such a guide but have failed dismally only finding very basic and incomplete
|
| Help 52 Bad fileName or Number | 02 Mar 2005 20:41 GMT | 1 |
I have a VBA program that open a txt file and reads from it. intFile = FreeFile() Open strInputFile For Input As #intFile Do While Not EOF(intFile)
|
| Added item to cut/copy/paste menu | 02 Mar 2005 20:32 GMT | 2 |
I need to add a menu item to the default edit menu that pops up when you right click over text fields in explorer. For example, goto www.google.com, then right click over the search box. A menu will pop up "Undo, cut, copy,paste,delete, select all".
|
| Passing control array as argument | 02 Mar 2005 20:25 GMT | 4 |
I have few option buttons defined as array (optTest(0), optTest(1)...) in my frame and I want to pass this array as argument to the Public Sub. Declaration of my Public Sub is Public Sub InitOption(InOpt() as OptionButton)
|
| Textbox Change Event | 02 Mar 2005 18:47 GMT | 6 |
I want do run code AFTER data in a VB6 textbox changes, but it runs the Change event as soon as I start typing. What do I use to process only after the field is entered? Is there an AfterUpdate event? Thanks. David
|
| newbee - how do I get icon on start menu and shortcut to desktop | 02 Mar 2005 18:11 GMT | 3 |
Ok, so with your help I made a gif into an icon for my Form title bar. Now after install I get a basic vb form .exe icon on the start menu. I am using visual installer, how do I get a different Icon on the start menu and in the shortcut to desktop.
|
| System halts/waits ... | 02 Mar 2005 17:20 GMT | 4 |
I am printing directly to the printer in my VB app as follows, Open "LPT1" For Output As #1 Print #1, Chr(27); Chr(64); Print #1, "Hello World";
|