2,383 Posted Topics

Member Avatar for chenmanalo
Member Avatar for smile4evr
Member Avatar for ismaelbalana

[URL="http://www.daniweb.com/forums/announcement4-2.html"]show us your effort...[/URL] - draw image control and fill with the picture. - draw a timer, set enable as true and interval as u needed (1000 for 1 second). - make loop to move picture with left and top position.

Member Avatar for Jx_Man
0
56
Member Avatar for Elmo_loves_you

That's your codes or get from internet? [code=vbnet] Private file_count As Integer = 0 Public Sub GetDirectoryFileCount(ByVal dir As String) dir = dir & ”\” Dim all_files() As String=Directory.GetFileSystemEntries(dir) For Each file As String In all_files If Directory.Exists(file) Then GetDirectoryFileCount(file) Else file_count += 1 End If Next file End Sub …

Member Avatar for Jx_Man
0
219
Member Avatar for sangfroid

I didn't understand clearly. - U have 3 tables(cats,dogs,birds) or 4 tables(cats,dogs,birds and totalanimal) ? - If u have 4 tables and want to get sum value of each column (cats,dogs,birds) and store into [B]totalanimal[/B] column, then this not added column but [B]update[/B] totalanimal column.

Member Avatar for Jx_Man
0
88
Member Avatar for asmit1987

[QUOTE]dim selectedItem as string selectedItem = ComboBox.Text[/QUOTE] why didn't use [icode]selectedItem = ComboBox.SelectedItem[/icode] ? and there are path on combobox item to loaded?

Member Avatar for Teme64
0
2K
Member Avatar for laghaterohan

[URL="http://www.daniweb.com/forums/thread9537.html"]see this thread[/URL] [URL="http://www.codeproject.com/KB/mobile/Sending_SMS_from_Computer.aspx"]And see this site[/URL]

Member Avatar for Jx_Man
0
109
Member Avatar for gane_g86

Yes, lizR right... Make sure the table name is same (field, length and datatype too). Read data from Access (using loop) then write certain data into MSSQL (this the logic, i never tried this).

Member Avatar for Jx_Man
0
142
Member Avatar for Vega_Knight

Try This : Declaration : [code=vb] Option explicit ' Contrl variable Private ctlName As Control[/code] Code : [code=vb] ' This program demonstrates how you can add and delete ' controls on your form dynamically. ' Creates text box and label. Private Sub cmdCreate_Click() ' Creates label. controls.Add function takes three …

Member Avatar for Vega_Knight
1
92
Member Avatar for thatoneguyx

See this [URL="http://www.daniweb.com/forums/showthread.php?t=116782"]thread[/URL]

Member Avatar for Jx_Man
0
51
Member Avatar for George_E
Member Avatar for nerden
Member Avatar for theory

try this following code : [code=vb]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 …

Member Avatar for CommGuy
0
234
Member Avatar for EkoX

Try This code : [code] Dim path as String path = "D:\Test\Music.wav" My.Computer.Audio.Play(path)[/code]

Member Avatar for Ixeman
0
164
Member Avatar for dimega

>> How would I go about setting a date/time to 0? Setting computer date/time??or just on your program?

Member Avatar for selvaganapathy
0
91
Member Avatar for zandiago
Re: Ufo

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

Member Avatar for R0bb0b
0
486
Member Avatar for Rabbz
Member Avatar for abu taher
Member Avatar for Rabbz
Member Avatar for abu taher
0
101
Member Avatar for Alexpap
Member Avatar for arufafa

what problems? what error come up? how far u have done? just post your code...

Member Avatar for Jx_Man
0
60
Member Avatar for asmit1987

Use timer to make delay and progress bar. so, draw a timer and progress bar then add this following code : [code=vb] Private Sub WelcomeScreen_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Timer1.Enabled = True End Sub Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles …

Member Avatar for Jx_Man
0
2K
Member Avatar for bpacheco1227
Member Avatar for l4z3r
Member Avatar for EkoX

Try this [code=vb] Microsoft.VisualBasic.Right("Daniweb",3)[/code]

Member Avatar for Jx_Man
1
108
Member Avatar for toko

pick on timer [code=vb] Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick set1X = MousePosition.X set1Y = MousePosition.Y Label1.Text = set1X & ":" & set1Y End Sub[/code] decrease an interval timer to get position more faster.

Member Avatar for Jx_Man
0
88
Member Avatar for melicaster

on cmdRun click Event : [code=vb]Dim FrmEvent As New Event FrmEvent.Show() Me.Hide()[/code]

Member Avatar for toko
0
77
Member Avatar for ruby.n

[QUOTE=selvaganapathy;692367]Hi, Use timer for this > When a button is Clicked - Here Enable the Timer and Close the Valve > After 5 Seconds (5000) - Disable the Timer and Open the Valve[/QUOTE] Ahh, i was late in post. Already answered by selvaganapathy :)

Member Avatar for ruby.n
0
87
Member Avatar for dinilkarun

Add on click event (you can find combo box filled with sstab event on the top of code window) This following code will make u can't open other tabs without fill textbox 1 (text1). [code=vb] Private Sub SSTab1_Click(PreviousTab As Integer) If Text1.Text = "" Then ' add as u needed …

Member Avatar for dinilkarun
0
146
Member Avatar for pardeep3dec
Member Avatar for venkatramasamy
0
79
Member Avatar for bprabhumdu

Well, this morning i copying new font and there are no error when i used in vb.

Member Avatar for Drycola
0
108
Member Avatar for smile4evr

[code]sql = "INSERT INTO Department(Department_ID,Department_name)VALUES('" & deptid & "','" & Text2.Text & "' )"[/code]

Member Avatar for Jx_Man
0
73
Member Avatar for acerdafpz

- [URL="http://www.daniweb.com/forums/announcement58-2.html"]Post your code first[/URL]. - What control used to show data (dbGrid,MsFlexGrid, etc) ?? - DatabaseName, Table name, Field Name??? Specify more detail...

Member Avatar for abu taher
0
85
Member Avatar for 3Dees

[code=vb] Dim temp, quantity As Double Console.Write("How many liters (only whole liters please ) ? ") temp = Console.ReadLine() quantity = Double.Parse(temp)[/code]

Member Avatar for EDDYGATE
0
271
Member Avatar for mufliha

>> the connections strings which i used in vs.net2003 isnot working here Maybe a little mistake. Just post your connection string. Btw [URL="http://www.carlprothman.net/Default.aspx?tabid=86#SQLClientManagedProvider"]visit this site[/URL]

Member Avatar for Jx_Man
0
88
Member Avatar for tusharvichare

[QUOTE=Prabakar;690773]You can also use [icode]Shell(<address of exe as String>, AppWinStyle.Hide)[/icode][/QUOTE] Agree with Prabakar

Member Avatar for Teme64
0
251
Member Avatar for arupa
Member Avatar for miculnegru
0
149
Member Avatar for laghaterohan

yes, you just do twice inserting. >>nah...re.....its nt wrkng! ne other solutions ? ne more appropriate solns? lee was give the answer. Have u tried it?post your code.

Member Avatar for Jx_Man
0
224
Member Avatar for melicaster

[URL="http://www.trap17.com/forums/vb-net-2k5-countdown-help-t53356.html"]Visit this[/URL]

Member Avatar for silambharasan
0
179
Member Avatar for silambharasan

Post your thread on [URL="http://www.daniweb.com/forums/forum14.html"]Computer Science and Software Design Forum Threads Section[/URL]

Member Avatar for Jx_Man
0
56
Member Avatar for sonia sardana

you want to create toolbar on windows explorer bar or you want to create toolbar on your project?

Member Avatar for silambharasan
0
76
Member Avatar for imyewneek
Member Avatar for silambharasan
0
90
Member Avatar for asmit1987

1. Just add your msword file on your setup project. then you can modified path of msword file : [code=vb]System.Diagnostics.Process.Start(Application.StartupPath & "\MsWordFileName.doc")[/code] 2. On combox properties, set [B]DropDownStyle = DropDownList[/B]

Member Avatar for asmit1987
0
202
Member Avatar for smile4evr

Is this thread was solved?? if yes then please post the answer. It will help other member who get the same problem.

Member Avatar for Jx_Man
0
97
Member Avatar for silambharasan

[B][URL="http://www.daniweb.com/forums/announcement58-2.html"]No, We can't.[/URL][/B]

Member Avatar for Jx_Man
0
57
Member Avatar for Bhatti302
Member Avatar for hakimkal
0
262
Member Avatar for hawisme000

>> i have knowledge of VB6 , is the code vb.net same as vb6? not many different about them, if you good in vb6 then i think it will easy to migrate from vb6 to vb.net. As samir said just post question when u get stuck...

Member Avatar for Jx_Man
0
78
Member Avatar for samir_ibrahim

>> Is there is link for giving rate to this message or this message was helpful check? Click on [B]Mark As Solved[/B] link below the post

Member Avatar for Dnx
0
158
Member Avatar for tyserman5674

so u want the event of controls shown...? just double click on each control to get click event. also you can change the event of controls.

Member Avatar for Jx_Man
0
128
Member Avatar for etenge

[URL="http://www.carlprothman.net/Default.aspx?tabid=81"]See this site....[/URL] There are all about connection string to databases.. Just looking what you needed there.

Member Avatar for Alexpap
0
112

The End.