2,383 Posted Topics
Re: i will use shockwave flash. find this control in component and check this. it will showing in your toolbox, use like other and add this following code : i use button here : [CODE] private sub command1_Click() shockwaveflash1.movie = yourFlashAppPath & "\yourFlashAppName end sub[/CODE] Ok. all for the best | |
Re: make your own project, if u get an errors than post it here.. | |
Re: Hi... Like Sawamura said using clipboard Try this following procedure, u can call in any event : [code=vb/net] Private Sub Cut() If Me.Textbox1.Text.Length > 0 Then Clipboard.SetDataObject(Me.Textbox1.SelectedText) Me.Textbox1.Cut() End If End Sub Private Sub Copy() If Me.Textbox1.Text.Length > 0 Then Me.Textbox1.Copy() End If End Sub Private Sub Paste() If Clipboard.GetDataObject.GetDataPresent(DataFormats.Text) … | |
Re: Yes, i really want Do you want to hang out in this valentine day? | |
Re: 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. [B][URL="http://www.daniweb.com/forums/search3246163.html"]See this Result[/URL][/B] | |
Re: [QUOTE]could you please send me the codes for the program.[/QUOTE] no.. we won't send u a codes. we directing u and give an example but not all codes friend :) | |
Re: A. use Microsoft Multimedia Control. find this control on component. add this code to play mp3 file : [CODE]Private Sub PlaySound() On Error GoTo ErrMsg AxMMControl1.Wait = True AxMMControl1.FileName = "D:\test.mp3" AxMMControl1.Command = "Open" AxMMControl1.Command = "Play" Exit Sub ErrMsg: MsgBox(Err.Description) End Sub[/CODE] B. just call procedure name | |
Re: Hi...Thanks for the share friend :) | |
Re: no, its not inserted in picture box. to play swf file you must use shockwaveflash. find this component and add to your toolbox. right click on your toolbox (or control + T) -> in tab controls find "shockwave flash" -> select it and it will shown on your toolbox control. … | |
Re: see this snippet, i write this code in vb.net 2003 and sql2000 but you can use it in vb.net 2005 and sql 2005. same code. 1. [URL="http://www.daniweb.com/code/snippet820.html"]Show Data in DataGrid with VB.Net 2003 and SQLServer 2000[/URL] 2. [URL="http://www.daniweb.com/code/snippet836.html"]Save, Edit, Delete Data using VB.Net and SQL Server 2000[/URL] | |
Re: cap car cat lip pact rat tic crap liar through | |
Re: First block all line of code then press the button on bar. See the pic | |
Re: you just to handle keychar, but you must know the ascii of letters. this following code will not allowed you to input other character except letters or strings. so u cannot input number or other special character. try this following code : [code=vb.net] Private Sub textDate_KeyPress(ByVal sender As Object, ByVal … | |
Re: [QUOTE=RamyMahrous;640887]Try to solve people questions in Daniweb C# forum :)[/QUOTE] :D | |
Re: hmmm.... this forum for introducing your self. please post your thread in current forum. | |
Re: Hi Chris... Welcome To Daniweb :) Fell free to post your question in this forums... | |
Re: use package & deployment wizard on microsoft visual studi tools. start program -> Microsoft Visual Studio 6.0 -> Microsoft Visual Studio 6.0 tools -> Package & Deployment wizard. | |
Re: thanks to use searching function in this forum. :) | |
Re: shell function used to apply/run other application and sava the task ID of that application as feedback value. so if none application or failed to call then the feedback value is 0. this following code is used sintax : shell(path_Name[,style][,wait][,timeout]) [COLOR="Red"]path_name [/COLOR]= executable file with the full path of the … | |
Re: show us your code friend.. | |
Re: you want to make some reports? then you can use Data Report Designer.. | |
Re: you simply can not...a msgbox is a modal window that uses the standard windows system font. you can manipulate it with use form as your message box.. | |
Re: [CODE]textunit.SelStart = Len(textunit.Text)/2[/CODE] | |
Re: >> i am succesfull in fetching the data and displaying it in the list in following way, - post your code | |
Re: Please share your answer with others, so other members can learn from you friend :) | |
Re: what the problem friend? | |
Re: so..you on form2 and after msg u want to back to form1?right? so just showing form 1 after message.. [CODE]Private Sub Command1_Click() If Text1.Text = "" Then MsgBox ("You have no content on your 1st Textbox") Form1.Show Unload Me Else End If End Sub [/CODE] | |
Re: are you binding data from database to data grid? using LIKE '%" c "%' operator to do this. | |
Re: it cause your option button is an array control.. so vb doesn't recognize the control.. so your code must be : [CODE]If Opt1(0).Value = True Then[/CODE] | |
Re: on combo box properties, set for [B]DropDownStyle = DropDownList[/B] | |
Re: do like debasisdas said. | |
Re: do u have the exe file of visual C++? if u have the exe file u can run that file from vb.net using Shell Function. | |
Re: [QUOTE]dim rpt as new crystalreport1()[/QUOTE] what is crystalreport1? crystalreport viewer or a page of report after generating? | |
Re: in vb 6 you can access it directly | |
Re: [B]AC MILAN[/B] is the best... :) I loved KaPaRo (Kaka, Pato, Ronaldo) [ATTACH]4972[/ATTACH] | |
Re: you want to install?? you mean like selvaganapathy said? | |
Re: Visit this site 1. [URL="http://www.thaiio.com/prog-cgi/vbnetwebcam.html"]One [/URL] 2. [URL="http://www.devx.com/dotnet/Article/30375/1763"]Two[/URL] 3. [URL="http://www.vbforums.com/showthread.php?t=378126"]Three[/URL] | |
Re: hi, i have same idea like alekhan too. this is completed task in building database like what alekhan describe. but you will get a complex db.:) so have a nice try. | |
Re: well great for help, but this section for vb.net so please write code in vb.net code not in c# friend :) | |
Re: what kind of error came up? are u added a merge file when u deployment it? | |
Re: select the 1st cell of rows [CODE]dim i as integer i = datagrid.CurrentRowIndex() text = Trim(datagrid.Item(i, 0))[/CODE] |
The End.