|
1. I don't really understand about
this matter. If an image means a 'map', you can use Map Info. Pls
CMIIW.
2. You can use SQL Inner Join or
'where' clausa to get a recordset.
ex : Select a.nip, a.nama, a.pasangan,
b.anak from pegawai a, anak b where a.nip = b.nip
Note : Pls learn about SQL
Syntax
3. To catch a 'null' result, you can
test this code :
TxtNIP.Text =
IIf(Isnull(!NIP),"-",!NIP)
Note : !NIP :
Recordset("NIP")
4. Pls try this code :
Private Sub TxtNIP_KeyPress(KeyAscii
as Integer)
If Keyascii = 13
Then 'Enter
Txt2.SetFocus
Else
If Len(Trim(TxtNip.Text)) = 6 Then
Txt2.SetFocus
Endif
Endif
End Sub
5. You can try Excel Object
Application
Muhammad Rivai Andargini
Untuk keluar dari millis ini, kirim email kosong ke: [EMAIL PROTECTED]
SPONSORED LINKS
YAHOO! GROUPS LINKS
|
