Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi...Welcome to Daniweb Friend :)
Where are u come from?

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi Laura...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

Hi...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

i learn from many resource friend.
from books (i have many books), internet (google), Asking from anybody and trying it by myself. like my signature Never tried Never Know :)
Actually this forum is a great place to learn, many people with different experience will give u a many example in different type.
Microsoft supplied MSDN, looks for function that u dont know there.

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi...Welcome to Daniweb Friend.
Many people will help u here, Just post your question on C# section.
Fell free to post.

Jx_Man 987 Nearly a Senior Poster Featured Poster

This code will display scroling text from left to right in Label.
First set timer Enable = True.
try this following code :

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
      label1.Text = Microsoft.VisualBasic.Right _
        (label1.Text, 1) & Microsoft.VisualBasic.Left _
        (label1.Text, Len(label1.Text) - 1)
    End Sub
Jx_Man 987 Nearly a Senior Poster Featured Poster

oh... i m so sorry...
yeah that codes for vb 6, but there are same code for vb.net.
this following code for vb.net.

Dim MsExcel As Excel.Application

    Private Sub Form3_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        MsExcel = CreateObject("Excel.Application")
    End Sub
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        With ListBox1.Items
            .Add(txtName.Text)
            .Add(txtEmail.Text)
            .Add(txtMobile.Text)
        End With
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        MsExcel.Workbooks.Add()
        MsExcel.Range("A1").Value = txtName.Text
        MsExcel.Range("B1").Value = txtEmail.Text
        MsExcel.Range("C1").Value = txtMobile.Text
        MsExcel.Visible = True
    End Sub

- button 1 for add item from textbox to listbox.
- button 2 to add all item in listbox to excel.
- Declare Dim MsExcel As Excel.Application in top of all event. don't declare it on event cause it be a global variable.
- You can modified it as u needed.

majestic0110 commented: Excellent work. Excellent poster! +2
Estella commented: Excellent +1
Jx_Man 987 Nearly a Senior Poster Featured Poster

Go to Project -> References -> Microsoft Excel 10.0 Object Library
Then add this following code :

Dim MsExcel As Excel.Application
Private Sub Command1_Click()
MsExcel.Workbooks.Add
MsExcel.Range("A1").Value = List1.List(0)
MsExcel.Range("B1").Value = List1.List(1)
MsExcel.Range("C1").Value = List1.List(2)
MsExcel.Visible = True
End Sub

Private Sub Command2_Click()
With List1
    .AddItem (txtName.Text)
    .AddItem (txtEmail.Text)
    .AddItem (txtMobile.Text)
End With
End Sub

Private Sub Form_Load()
Set MsExcel = CreateObject("Excel.Application")
End Sub
Jade_me commented: This post help me... +1
Naruse commented: wonderful code +1
Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi naman...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi...Welcome to Daniweb Friend :)
you can post your question and problem in vb section

Jx_Man 987 Nearly a Senior Poster Featured Poster

specify more what the problem is.

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi..
Use a Search Facility of this forum, and search with key "Final Project". You will find similar threads. There are many suggestion from many members.
See this Result

Jx_Man 987 Nearly a Senior Poster Featured Poster

Post on vb.net section

Jx_Man 987 Nearly a Senior Poster Featured Poster

handle it with keyDown Event.
this following code is form keydown event, you can do same with other controls.

Private Sub Search_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown
        If e.KeyCode = Keys.Up Then
            'PictureBox1.Top -= 10
            MsgBox("Key Up Pressed")
        ElseIf e.KeyCode = Keys.Down Then
            'PictureBox1.Top += 10
            MsgBox("Key Top Pressed")
        ElseIf e.KeyCode = Keys.Left Then
            'PictureBox1.Left -= 10
            MsgBox("Key Left Pressed")
        ElseIf e.KeyCode = Keys.Right Then
            'PictureBox1.Left += 10
            MsgBox("Key Right Pressed")
        End If
    End Sub
Jx_Man 987 Nearly a Senior Poster Featured Poster

you need to use third party.

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

"I come n ot, friends, to steal away your hearts"

Julius Caesar III, Act III, scene ii.

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi..Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

try to use Search Facility in this forum and search for it with searching key is "Final Project". you'll find many similar thread. there are many suggestion about final topic from many members.

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi there...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

nope... as far i knows you can't run it without .net framework.

Jx_Man 987 Nearly a Senior Poster Featured Poster

so make it solved :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi R' Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi Prasad...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

which event do you want to know??

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

Hi...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

share your answer friend, so other member can learn from you :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

thank u

that its mean solved?

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

Great Code :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

you want to install?? you mean like selvaganapathy said?

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

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

Hi Marius...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

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

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

Hi...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

- Rails Solutions
Ruby on Rails Made Easy
- The Ruby Programming Language
by David Flanagan; Yukihiro Matsumoto

Ruby is a dynamic programming language Ruby draws inspiration from Lisp, Smalltalk, and Perl, but uses a grammar that is easy for C and Java™ programmers to learn. Ruby is a pure object-oriented language, but it is also suitable for procedural and functional programming styles.
Maybe you can learning Phyton before started ruby cause ruby interactive is familiar with phyton.

Jx_Man 987 Nearly a Senior Poster Featured Poster

make sure the server name is right.

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi..Welcome to Daniweb Friend :)