Jx_Man 987 Nearly a Senior Poster Featured Poster

water again....

Jx_Man 987 Nearly a Senior Poster Featured Poster

Virus :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

ups.. sorry i didn't read the post carefully.
what i mean before is if none option chosen set to default chose option. sorry friend

Jx_Man 987 Nearly a Senior Poster Featured Poster

A worried never reduce a tomorrow difficulty but just steal a today happiness.
- Leo Buscaglia -

Jx_Man 987 Nearly a Senior Poster Featured Poster

i dream i can fly....

...and touch the sky? lol

...and bring the star back to her? lol;)

Jx_Man 987 Nearly a Senior Poster Featured Poster

borrow my tools or things and never bring it back...

yeah, really....really...really annoying:ooh:

Jx_Man 987 Nearly a Senior Poster Featured Poster

chicken soup....

Jx_Man 987 Nearly a Senior Poster Featured Poster

hmm, one could probably have a good laugh with Roseanne Barr... And I'm sure she likes her food too.

hahaa, agree..agreee...:twisted:

Jx_Man 987 Nearly a Senior Poster Featured Poster

p-man

Jx_Man 987 Nearly a Senior Poster Featured Poster

Give a new Love every day.

Jx_Man 987 Nearly a Senior Poster Featured Poster

fall into chasm and never got the base of chasm...
scared one...

Jx_Man 987 Nearly a Senior Poster Featured Poster

what a tasted??:?:

banana

Jx_Man 987 Nearly a Senior Poster Featured Poster

hi zuniza,
hmm interesting project, you must work hard to make all.
i agree with Walkere to this recommended

In particular I'd recommend one of two:

* phpBB
* Simple Machines Forum

Jx_Man 987 Nearly a Senior Poster Featured Poster

This should be:
People who don't work at all and have all the life!

i remember my team in university...
i work hard for the program and they got the same result...

Jx_Man 987 Nearly a Senior Poster Featured Poster

Good means the definition of the method...
i looking for many site and article but all of them have a one resources article and i was read this article...

Jx_Man 987 Nearly a Senior Poster Featured Poster

thx friends, im looking for this game

Jx_Man 987 Nearly a Senior Poster Featured Poster

Roseanne Barr...
Never imagine...

Jx_Man 987 Nearly a Senior Poster Featured Poster
Elladan commented: Thanks +1
Jx_Man 987 Nearly a Senior Poster Featured Poster
Estella commented: thx +1
Jx_Man 987 Nearly a Senior Poster Featured Poster

set default if none option chosen.

Jx_Man 987 Nearly a Senior Poster Featured Poster

specify the table that you want to show.
ex :
category -> idCate,CategoryName

Jx_Man 987 Nearly a Senior Poster Featured Poster

randomize frame like what?i didn't understand the point?
specify more friend..
Ok.

Jx_Man 987 Nearly a Senior Poster Featured Poster

randomize like what?

Jx_Man 987 Nearly a Senior Poster Featured Poster

look for length properties of text box, you can change the length of character. so user just input character through the length of text box properties.

Jx_Man 987 Nearly a Senior Poster Featured Poster
Naruse commented: :twister: +1
Jx_Man 987 Nearly a Senior Poster Featured Poster

sponge bob ice cream
its flavor Chocobanana...

Jx_Man 987 Nearly a Senior Poster Featured Poster

specify more friend..

Jx_Man 987 Nearly a Senior Poster Featured Poster

add component for flash player :
Right click on control toolbox->add/remove item->select the com component tab -> find add shockwave flash object.
this control will show in my user control on control toolbox.

to play add this code :

AxShockwaveFlash1.Stop()
AxShockwaveFlash1.Movie = FilePath & "\FileName.swf"
AxShockwaveFlash1.Play()
Jx_Man 987 Nearly a Senior Poster Featured Poster

pocari sweet

Jx_Man 987 Nearly a Senior Poster Featured Poster

I don't believe if UFO is present. i think UFO is superstition....

Jx_Man 987 Nearly a Senior Poster Featured Poster

Perfection!!!:'(

Jx_Man 987 Nearly a Senior Poster Featured Poster

people who talk to much but has none action.
Called NATO (Not Action Talk Only)

Sawamura commented: NATO :) +1
Jx_Man 987 Nearly a Senior Poster Featured Poster

your question is not complete?you want store or just take a picture?

Jx_Man 987 Nearly a Senior Poster Featured Poster

try this following code :

Public Function MakeNumRand() As String
        Dim NumRand As New Random
        Dim temp As String
        temp = NumRand.Next(1, 20)
        Return temp
    End Function

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        TextBox1.Text = MakeNumRand()
    End Sub

code above generate with pressing button, you can change it to generate for each variable

Jx_Man 987 Nearly a Senior Poster Featured Poster

this simple following code to add/store data to sqlserever :

Private Sub btnAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAdd.Click
        Dim check As Integer
        Dim conn As SqlConnection
        Dim cmdmedical As New SqlCommand
        Dim cmdmedical1 As New SqlCommand
        Dim damedical As New SqlDataAdapter
        Dim dsmedical As New DataSet
        Dim dtmedical As New DataTable

        If cmbNis.SelectedIndex = -1 Or cmbBloodType.SelectedIndex = -1 Or txtdisease.Text = "" Or txtAnomalyBody.Text = "" Or txtHeight.Text = "" Or txtBerat.Text = "" Then
            MsgBox("Student Medical Data is not completed", MsgBoxStyle.OKOnly)
        Else
            If MsgBox("Are you sure to store student medical data with Nis : " & cmbNis.SelectedItem & " ?", MsgBoxStyle.OKCancel, "Input confirm") = MsgBoxResult.Cancel Then
                ' do nothing
            Else
                Try
                    conn = GetConnect()
                    conn.Open()
                    cmdmedical = conn.CreateCommand
                    cmdmedical.CommandText = "SELECT * FROM medical WHERE Nis='" & Trim(cmbNis.SelectedItem) & " ' "
                    damedical.SelectCommand = cmdmedical
                    damedical.Fill(dsmedical, "medical")
                    dtmedical = dsmedical.Tables("medical")

                    If (dtmedical.Rows.Count > 0) Then
                        MsgBox("medical dengan Nis " & Trim(cmbNis.Text) & " Sudah ada didata base", MsgBoxStyle.OKOnly, "Message :")
                    Else
                        
                        cmdmedical1 = conn.CreateCommand
                        cmdmedical1.CommandText = "INSERT INTO medical(Idmedical, Nis, BloodType, Disease,AnomalyBody,Height,Weight) VALUES('" & Trim(idmedical.Text) & "','" & Trim(cmbNis.SelectedItem) & "','" & Trim(cmbBloodType.SelectedItem) & "','" & Trim(txtdisease.Text) & "','" & Trim(txtAnomalyBody.Text) & "','" & Trim(txtHeight.Text) & "','" & Trim(txtWeight.Text) & "')"
                        check = cmdmedical1.ExecuteReader.RecordsAffected()
                        If check > 0 Then
                            MsgBox("Student with Nis " & Trim(cmbNis.Text) & " succesfully added", MsgBoxStyle.OKOnly, "Message :")
                        Else
                            MsgBox("Student with Nis " & Trim(cmbNis.Text) & " failure to added", MsgBoxStyle.OKOnly, "Message :")
                        End If
                        Refresh_Form()
                        conn.Close()
                    End If …
Jx_Man 987 Nearly a Senior Poster Featured Poster

make a module to connect vb.net with sql server.
add this code to module :

Imports System.Data
Imports System.Data.SqlClient

Module Connect
    Public conn As SqlConnection
   
    Public Function GetConnect()

           conn = New SqlConnection("Server = YourServerName;" & "initial Catalog = yourDatabaseName;" & " Trusted_Connection=yes")

        Return conn
    End Function
End Module

you can call the function on the module to connect with sqlserver on each form. so u can open connection and close.
like this ex:

conn = GetConnect()
conn.Open()
.....
.....
conn.Close()

What a registration form you want to build?
put a print screen?

Jx_Man 987 Nearly a Senior Poster Featured Poster

make a time machine and get back to 2008. but to finished the time machine it got 28 years.
haha...:))

Jx_Man 987 Nearly a Senior Poster Featured Poster

so you want to make some program like virus or you really want to make virus program??
you mean when you connect your flash disk to computer the current program will running from your flash disk and infect the destination pc (copy it self to destination pc). right or not?
if u want to do this u will using autorun file (.inf) to run the program which your flash disk connect to computer.

Jx_Man 987 Nearly a Senior Poster Featured Poster
Jx_Man 987 Nearly a Senior Poster Featured Poster

hi bredes you post a same thread again.
cek your own post (TransParant Control)
try this thread, its a similiar thread like your post
Control Transparant Form

Ok.
all for the best

Jade_me commented: :D +1
Jx_Man 987 Nearly a Senior Poster Featured Poster

u mean the program can be run when your usb connect to computer?

Jx_Man 987 Nearly a Senior Poster Featured Poster

Really, Really Lucky man...
i can imagine if it blowing (not just burning) right on his face.

Jx_Man 987 Nearly a Senior Poster Featured Poster

A Key to get anything is to be patience.
- Arnold Glasow -

Jx_Man 987 Nearly a Senior Poster Featured Poster

yes, thanks for reply.
i cleaned my computer and the problems never happened again.

Jx_Man 987 Nearly a Senior Poster Featured Poster

your code is true but did a little more.
make the procedure or function to generate auto number only. so you can call this procedure or function after you add,edit,delete or clear form.

Jx_Man 987 Nearly a Senior Poster Featured Poster

a mix of white milk and strawberry syrup.

Jx_Man 987 Nearly a Senior Poster Featured Poster

There are a million suckers born every day!
Your golden opportunity to be a winner!

a suckers can be a winner too.:)

dnk commented: Right +1
Jx_Man 987 Nearly a Senior Poster Featured Poster

Is a fun to do impossible think.
-Walt Disney-

Jx_Man 987 Nearly a Senior Poster Featured Poster

a cheerful is a lubricant of life machine

Jx_Man 987 Nearly a Senior Poster Featured Poster

A human not be born as a looser