Hello every body I need help for: 1. To convert data in a data table of Fox pro to an access data table having the same field names through vb 6 coding. 2. As...
Hi, I have a visual basic program to start up a project aplication in Access 2000. In the instrction shell i pass user end password from mdw file. However my...
Chris, Firstly skip on Shell to the EXE. Use the shell API and pass the API the MDB file, the windows shell will look after the locating of Access etc. IIRC...
I would to made a answering machine in VB using MScomm. for that i did upto pick up siganl and hang up the phone. Next I want to get a phone number in the text...
Dear Sir, Actually I want a useful help from u, in case of Visual Basic. I think, u will help me bcoz u are genius and great. Inserting OLE Object (Microsoft...
Hi everybody, I have a problem and maybe somebody that is smart can advise me how to solve it. I am using VB.net (2003) and the problem is something along the...
Yourt controls should be in an arry too.. e.g. create a label, then duplicate it. TheIDE will ask if you want to create an array. The syntax from then on is...
Hi All, I have a form which contains a UserControl - the control is more a wrapper as it only consists of a transparent form containing a line, it is intended...
Hi Skouperd, ... I would also suggest using a Control Array in order to do what you want (it has _significantly_ less resource overhead than individual ...
Hi Ian, ... Whoo-hoo! Oh sorry, got a little too excited, too early. ... I would personally suggest you store a reference to the parent form for easy access: ...
One quick thought, You should Create a Function Like ... Private Function FindControl(ByVal ControlName As String) As Control Dim loopX As Integer For loopX =...
Waqas Hussain
waqash@...
Jul 10, 2004 12:32 am
13144
I just found this great program to make custom icons (instead of using the ones that come with VB) for applications. Here is the link (the url is quite...
Hi Shawn, Thanks a lot Shawn. In the command_click handler you have a commented out "on error...." I'm assuming that this is intended to cater for controls...
Hi Ian, ... Yep - sorry 'bout that. See what you get when you just whip something together? If you were to add native controls to the form and run it again...
Dear Fellows, I need immediate help on the following problem, "Inserting OLE Object (Microsoft Equation 3.0) from microsoft word in Database like Access or SQL...
Dear Programmers, For a project of mine I need to find out the determinant value of a 10x10 matrix. Can anyone of you help me with some programs, logic or...
Hello Everyone, I need some help on designing the <b>Encryption keys</b> in visual basic 6.0 . This is just a sample project dealing with security. i need to ...
Hi, I'm trying to copy some information from an ASCII text file and then paste it into a Rich Text Box bound to an Access data field. The ASCII text often...
Try this Option Explicit Private Sub Command1_Click() Dim intCount As Integer Dim strTemp As String Dim xx As Long Dim a As Integer Dim b As Integer ' 'create...
This is making me very annoyed, Ok i downloaded this ocx (toc2sock.ocx) and i tried to add it to my project and it says it was missing or invalid. I am...
Sounds like a bad file. Contact the makers, they can help more than we can. The odds are, nobody here knows any thing about it. ... From: shaoskillz...
Can anybody tell me what is the character in vb.net that will create a new line for me. For example in java if i did System.out.println("i \n need \n this \n ...
Hi Weety, ... You're looking for the constant vbCrLf: sText = "this text" & vbCrLf & "that text." Regards, Shawn K. Hall http://ReliableAnswers.com/ '//...