No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
1. Make Exe of same project. 2. Create a Setup File using Package and Deployment Wizard. 3. Install it on Server machine where the exact database file is exist. 4. Copy all DLL and OCX files of this Setup from Support Folder, Paste it on each client machine which are …
Dim i As Integer For i = 0 To 5 Debug.Print i Next i = 0 While i <= 5 Debug.Print i i = i + 1 Wend
Dim fso as new FileSystemObject Set fso = Nothing Set fso = New FileSystemObject strFileName = "D:\Deepak.txt" fso.OpenTextFile (strFileName) Set ts = fso.OpenTextFile(strFileName) While Not ts.AtEndOfStream strCurrentLineText = "" strCurrentLineText = ts.ReadLine Debug.Print strCurrentLineText Wend
Hi, This may be useful to find data from Grid. Please find attached project. It will be able to find and replace the text from MSFlexGrid's Cells
A very simple method, i am calling the system's WebCam API by shell using VB 6.0. If this doesn't match with your requirements we will go ahead for new solution.
'Add one image control on your form and then copy paste the following line 'of code in code window Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) Me.Caption = X & " , " & Y End Sub Private Sub Image1_MouseMove(Button As Integer, Shift …
'The FSO - Microsoft Scripiting Runtime will delete the file permentaly 'Instead of fso.Deletefile or Kill statement we can use the following code 'this will send the deleted file to recyle bin 'Create new form and drag one command button over there, then copy paste 'the following line of code …
The End.
deepakbshitole