Forum: Visual Basic 4 / 5 / 6 10 Days Ago |
| Replies: 7 Views: 618 1st mark it solve. and then start a new thread plz. |
Forum: Visual Basic 4 / 5 / 6 14 Days Ago |
| Replies: 7 Views: 618 try to see it. i think it can help you. |
Forum: Visual Basic 4 / 5 / 6 Nov 11th, 2009 |
| Replies: 2 Views: 445 you need to refresh your data control. like: data1.refresh
msflexgrid.refreshetc. |
Forum: Visual Basic 4 / 5 / 6 Nov 10th, 2009 |
| Replies: 8 Views: 498 |
Forum: Visual Basic 4 / 5 / 6 Nov 10th, 2009 |
| Replies: 16 Views: 1,068 try it with search option. |
Forum: Visual Basic 4 / 5 / 6 Nov 10th, 2009 |
| Replies: 10 Views: 827 why you use this. plz explain. |
Forum: Visual Basic 4 / 5 / 6 Nov 9th, 2009 |
| Replies: 16 Views: 1,068 |
Forum: Visual Basic 4 / 5 / 6 Nov 8th, 2009 |
| Replies: 6 Views: 706 if the file in same folder(App.Path & "\db1.mdb") |
Forum: Visual Basic 4 / 5 / 6 Nov 8th, 2009 |
| Replies: 8 Views: 509 like thisform1.visible = false
image1.visible = false
command1.visible = false |
Forum: Visual Basic 4 / 5 / 6 Nov 7th, 2009 |
| Replies: 4 Views: 445 not like that. what will happen in click event that write in module. plz check it. |
Forum: Visual Basic 4 / 5 / 6 Oct 26th, 2009 |
| Replies: 8 Views: 553 if you want only 4 digit will type in text box then adjust the properties of text box. max length = 4 |
Forum: Visual Basic 4 / 5 / 6 Oct 24th, 2009 |
| Replies: 11 Views: 470 its not php. it made by vb6. |
Forum: Visual Basic 4 / 5 / 6 Oct 22nd, 2009 |
| Replies: 6 Views: 702 have you any problem more? if not please solve it. |
Forum: Visual Basic 4 / 5 / 6 Oct 22nd, 2009 |
| Replies: 11 Views: 470 |
Forum: Visual Basic 4 / 5 / 6 Oct 20th, 2009 |
| Replies: 2 Views: 378 add a dataenvironment and a datareport. connect the database with dataenvironment and connect the datareport with dataenvironment. and then design the datareport. |
Forum: Visual Basic 4 / 5 / 6 Oct 17th, 2009 |
| Replies: 6 Views: 702 install service pack 6 for vb6. |
Forum: Visual Basic 4 / 5 / 6 Oct 12th, 2009 |
| Replies: 3 Views: 257 did you connect it by properties or code? try to use code for better result. |
Forum: Windows NT / 2000 / XP Oct 10th, 2009 |
| Replies: 5 Views: 315 just click on the mark thread as solved. below of the page blue font. |
Forum: Visual Basic 4 / 5 / 6 Oct 10th, 2009 |
| Replies: 4 Views: 392 in from1 Private Sub Command1_Click()
Form2.Label1.Caption = "Name"
Form2.Show
End Sub |
Forum: Windows Software Oct 7th, 2009 |
| Replies: 1 Views: 320 try to find out it in web by size and details option. |
Forum: Visual Basic 4 / 5 / 6 Sep 16th, 2009 |
| Replies: 21 Views: 3,028 try this Dim f1 As New Form1
' Dim f2 As New Form1 'u must have this form in project
Private Sub Command1_Click()
f1.Show
' f2.Show
End Sub |
Forum: Visual Basic 4 / 5 / 6 Sep 15th, 2009 |
| Replies: 9 Views: 442 adjust the alignment, if it has this property. |
Forum: Visual Basic 4 / 5 / 6 Sep 15th, 2009 |
| Replies: 21 Views: 3,028 u can get idea from the attach file. |
Forum: Visual Basic 4 / 5 / 6 Aug 18th, 2009 |
| Replies: 2 Views: 353 did you write codeBeep
If not then I think no problem in your code. |
Forum: Visual Basic 4 / 5 / 6 Jun 30th, 2009 |
| Replies: 4 Views: 477 and if you it increase auto then check under check box. |
Forum: Visual Basic 4 / 5 / 6 Mar 26th, 2009 |
| Replies: 18 Views: 1,835 what you mean? "it doesnt just end."
You want it will hide? then write code in form_laod
"me.hide" or "form1.hide" |
Forum: Visual Basic 4 / 5 / 6 Oct 12th, 2008 |
| Replies: 7 Views: 1,489 If you have no other question then please mark it solved. |
Forum: Visual Basic 4 / 5 / 6 Oct 12th, 2008 |
| Replies: 5 Views: 1,675 have you any other question? If not then mark it solved. |
Forum: Visual Basic 4 / 5 / 6 Oct 7th, 2008 |
| Replies: 7 Views: 1,489 you can write activex button in google for search. then you can get a lot of free activex button. here I attach a file. try it. |
Forum: Visual Basic 4 / 5 / 6 Oct 7th, 2008 |
| Replies: 5 Views: 1,675 Private Sub Form_Unload(Cancel As Integer)
Dim msg
msg = "Do you want to Exit? "
reply = MsgBox(msg, vbExclamation + vbYesNo)
Select Case reply
Case vbNo
Cancel = -1
Case vbYes
End
End Select |
Forum: Windows NT / 2000 / XP Sep 19th, 2008 |
| Replies: 11 Views: 3,349 >>I run a Malwarebytes' Anti-Malware scan that found 79! infected files. Deleted all of them.
you see that files what you deleted? I don't know but I think you miss some system files. what was... |
Forum: Visual Basic 4 / 5 / 6 Jul 29th, 2008 |
| Replies: 5 Views: 1,811 Private Sub cmdfind_Click()
Dim a As String
Dim b As String
a = text1.text 'employee number
If Len(a) = 0 Then Exit Sub
b = "Employee Number Like """ & a & "*"""
Data1.Recordset.FindNext b... |