Jx_Man 987 Nearly a Senior Poster Featured Poster
"SELECT * FROM SISWA where NIS LIKE '%" & Trim(search) & "%'"
Jx_Man 987 Nearly a Senior Poster Featured Poster

try this following code, this code didn't allowed you to input any special character just numbers and letters:

Private Sub Text1_KeyPress(KeyAscii As Integer)
    Select Case KeyAscii
        Case 65 To 90, 48 To 57, 8 ' A-Z, 0-9 and backspace
        'Let these key codes pass through
        Case 97 To 122, 8 'a-z and backspace
        'Let these key codes pass through
        Case Else
        'All others get trapped
        KeyAscii = 0 ' set ascii 0 to trap others input
    End Select
End Sub
Neji commented: simple but excellent +1
Vega_Knight commented: great +1
Naruse commented: :D SIIIIIIIIPpppp +1
Jx_Man 987 Nearly a Senior Poster Featured Poster

try to make new thread...don't hijack others thread :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

try to using ascii then trap when key press.

Jx_Man 987 Nearly a Senior Poster Featured Poster

oh, and don't forget to set MultiSelect = simple or extend on listbox properties. so item can be selected more than one. ok :)

dnk commented: nice one +1
Neji commented: Always Help :P +1
Vega_Knight commented: Good +1
Jx_Man 987 Nearly a Senior Poster Featured Poster

show us your effort friend :) and we'll helps you

Jx_Man 987 Nearly a Senior Poster Featured Poster

try this following code :

Private Sub Form_Load()
Dim i As Integer
For i = 0 To 10
    List1.AddItem (i)
Next
End Sub

Private Sub List1_KeyDown(KeyCode As Integer, Shift As Integer)
Dim intIndex As Integer
    If Shift = 2 Then
        If KeyCode = vbKeyA Then
            For intIndex = 0 To List1.ListCount - 1
                List1.Selected(intIndex) = True
            Next
        End If
    End If
End Sub

Hope this helps...

Estella commented: sings good +1
Sawamura commented: nice one :) +1
Neji commented: excellent +1
Jx_Man 987 Nearly a Senior Poster Featured Poster

using api function.

Jx_Man 987 Nearly a Senior Poster Featured Poster

"Ambition is a poor excuse for not having sense enough to be lazy"
Edgar Bergen, (Charlie McCarthy), US comedian & ventriloquist (1903 - 1978)

Jx_Man 987 Nearly a Senior Poster Featured Poster

yes..use attachment facility in this forum.
click on "Go Advanced" and looks for an attachment manage.

Jx_Man 987 Nearly a Senior Poster Featured Poster

hi Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

hi...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

use manifest file.
see this thread...
find an attachment on this thread (post #9)
http://www.daniweb.com/forums/thread109621.html

Jx_Man 987 Nearly a Senior Poster Featured Poster

great simple code from shouvik... try it friend and give a feedback :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

no many changes in .net. if u good in vb 6, you will get easy way to learn vb.net. vb 6 is structural whereas vb.net is OOP. So to learn vb.net you must to know what is object oriented.

Jx_Man 987 Nearly a Senior Poster Featured Poster

if u didn't have experience with registry, i think to use shouvik suggestion. any failure when you create/delete key will make your system unstable.

Jx_Man 987 Nearly a Senior Poster Featured Poster

4529

Jx_Man 987 Nearly a Senior Poster Featured Poster

-905

Jx_Man 987 Nearly a Senior Poster Featured Poster

152 = 10011000

Jx_Man 987 Nearly a Senior Poster Featured Poster

yale

Jx_Man 987 Nearly a Senior Poster Featured Poster

Knight Rider

Jx_Man 987 Nearly a Senior Poster Featured Poster

bell

Jx_Man 987 Nearly a Senior Poster Featured Poster

just use registry as much as you can, ideally into many branches :-)))))))

i like this..use registry.

Jx_Man 987 Nearly a Senior Poster Featured Poster

so show you effort this far...:)

Jx_Man 987 Nearly a Senior Poster Featured Poster

already solved...so mark it solved :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

wizard is great

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi Sello...Welcome to Daniweb Friend :)
Post your thread on current forum. you will get best helps from many people there :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi Fuze...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi Hermes...Welcome to daniweb Friend:)

Jx_Man 987 Nearly a Senior Poster Featured Poster

Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

it seems you worked on vb6...if in vb.net you must declare object instead a form.
Happy coding friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

use End.
in any event

End
Jx_Man 987 Nearly a Senior Poster Featured Poster

use DateSerial().
DateSerial(Year,Month,day+120) --> this function will count 120 days from an inputed day.
for more clearly see this link : http://msdn2.microsoft.com/en-us/library/1we4t8hy.aspx

Jx_Man 987 Nearly a Senior Poster Featured Poster

Maybe you must to correted dfd level 0 now. how much actors you have, cause in level 0 we can see all actors.

Jx_Man 987 Nearly a Senior Poster Featured Poster

you cannot connected process with other process directly. process just get information from database and actor will connected one process with other process.
In dfd you have two actor?member and suppliers.. so who will input the data into data strore??

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

you're welcome.
don' forget to mark this thread solved :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

Togo...
Cream Sandwich Biscuit

Jx_Man 987 Nearly a Senior Poster Featured Poster

Nissan Terrano - Powerfull car

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi welcome to Daniweb friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi Rory...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi...Welcome to Daniweb Friend :)
Hope you will enjoy here :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

show use your code and effort. we will help u :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

you need to declare form name as object and use it to call that form.
ex :

dim Dani as new Form2
Dani.show
Jx_Man 987 Nearly a Senior Poster Featured Poster

combobox.items.clear()

Jx_Man 987 Nearly a Senior Poster Featured Poster

yes...some related file which it included in package folder will register after you instal it.

Jx_Man 987 Nearly a Senior Poster Featured Poster

use format(MoneyValue,"currency")

Jx_Man 987 Nearly a Senior Poster Featured Poster

use packaging and deployment in visual studio tools.