________________________________ From: Neiger, Bruce D Sent: Mon 4/2/2007 12:41 PM To: helpmewithvb@yahoogroups.com Subject: VB.NET IDE Video Tutorials from...
This should be a simple question. I am trying to pass a multidimensional array. I keep getting a subscript error. I created a very simple example to try to...
Hi Tim, 1) Don't use the 'End' keyword. Your program should die just as your Form_Load is being completed, as your code is written. 2) Never use the 'End' Word...
Tim: Straight from MSDN *Resizing with Preserve.* If you use *Preserve*, you can resize only the last dimension of the array, and for every other dimension you...
All, So Far Midterm Grade is an A. I have a new question that I am struggling with. When a control is placed on a form, the control is private to the form....
Joe, Great going so far! If you take a simple example: create two forms, and put a button and label on each form. Have each of the forms buttons write a...
Joe, Tim pretty much said it all. Of course I will chime in, but with little more to add. If you have a VB6 or VBA form, you can certainly access a control...
Tim, Brett was correct in his quote from MSDN. To put it into perspective: Considering your array, where you have 'Dim strArray(0, 3, 3) As String', rewrite...
Hi Tim I think you really want to use a 2-D array rather than the 3-D array shown in your code. Imagine the array as a Table, as in MS Word. Each row would...
hi all, this is rohit. i am student of b.sc.it. i just want to know how to retrive the data from ms access to the combo box, text box using pure adodc not with...
Good Morning Rohit, We could write a book on how to do that, but it would be easier for you to download a sample project that shows and explains how the...
I would like to learn about Mortgage Calculators with amortization table Could someone can sugest me a good book to learn this subjet.? Thank you so much. ...
Good Evening Manuel, This web page has a basic explanation of the formulae used to compute a loan for a personal home: http://www.mtgprofessor.com/formulas.htm...
Hi Manuel: Massively off topic, but an area I enjoy. I have long thought that the ledger like nature of a spreadsheet makes it a new perfect tool to play...
Hi Manual, Here is a sample program, in VB-6, that you can download, play with the source code, or make it into an executable, so you can explore all of the...
I have a multi form app and would like to permit the user to ESCAPE the form they are have loaded by pressing the "ESC" key I can execute this task as long as...
I have a multi form app and would like to permit the user to ESCAPE the form they are have loaded by pressing the "ESC" key I can execute this task as long as...
In the forms proprieties, set the "KeyPreview" to true then in the "keydown" sub put this.... Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer) If...
... Add a button to the form with the caption "Close" or "Exit" or "Cancel". Set the "Cancel" property of the button to "True". In the "Click" event handler...
I need some direction here. I created a program that reads a text file, parses out certain data and returns a result based on a search from the user. It is...
... VBScript is not your friend here. If you want speed it needs to be something else. Preferably C++, but even VB6 would be a substantial imporovement. If...
Thank you Adelle. So ideally, for web pages: instead of using vbscript functions, create a C++ COM with methods; call the methods as needed with either...