2,383 Posted Topics
Re: [QUOTE=redprawn_89;619602]Tks for the help guys! i sloved the problem already! really tks for the help! :)[/QUOTE] Oh. it was solved... then please share your answer friend, so other members can learn from u if they got same problem. :) | |
Re: [code=C#]string s; s = textBox1.Text.Length.ToString();[/code] | |
Re: initial condition [code=vb]Dim i As Integer i = dgUser.CurrentRowIndex()[/code] i.e : (this following code will select user where id user = value of first column from selected datagrid). Of course in datagrid click event : [code=vb]Private Sub dgPendidikan_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles dgPendidikan.Click ... cmdUser.CommandText = … | |
Re: [QUOTE]I need to know how i can make a button open a second form in my project[/QUOTE] [code=vb] Private Sub Command1_Click() Form2.Show End Sub [/code] [QUOTE]I also need to know how to open notepad with a button[/QUOTE] [code=vb]Private Sub Command1_Click() Dim dTaskID As Double, path As String, file As String … | |
Re: Hi dustypc...Welcome to Daniweb Friend :) Hi gcizoo...Please post your question on current section, this section for introduction only. | |
Re: so, what do you want? [code=vb.net] Const PW = "nimda" Dim sInput As String sInput = InputBox("Enter Password to Open: ") If (sInput <> PW) Then Beep() MsgBox("Invalid password, cannot Open...") Else 'code to delete record End If [/code] | |
Re: use this following function : [code=vb.net] Public Function Factorial(ByVal Number As Integer) As String Try If Number = 0 Then Return 1 Else Return Number * Factorial(Number - 1) End If Catch ex As Exception Return ex.Message End Try End Function[/code] I called this function in button click event: [code=vb.net] … | |
Re: great code. just to correct ;) [code]newString = newString & "'" & MyArr(i) & "'," & vbCrLf[/code] | |
Re: Hi...Welcome to Daniweb Friend :) Please post your help in current section. | |
Re: Hi...Welcome to Daniweb Friend :) >>a very nice site!!! Absolutely Right :D | |
Re: see this code : [code=pascal] function FIBO(N : integer) : integer; begin if (N = 1) or (N = 2) then FIBO := 1 else FIBO(N) := FIBO(N - 1) + FIBO(N - 2) end;[/code] hope this helps... | |
Re: Yes u can, i think selvaganapathy was given the best answer :) | |
Re: This section just for introduction friend :) You can post your question about Encryption programs and anything else in current section, depend on your programming language. Ok. See ya... | |
Re: yes, like veena said u need yo save the setting of radio button. i think txtfile is easiest way. | |
Re: he mean to post your question in [URL="http://www.daniweb.com/forums/forum16.html"]Database Section[/URL] also. | |
Re: what the problem is?show me your effort... any error occured? | |
Re: Hi Anu...Welcome to Daniweb friend :) Hope you can give many help to other members. | |
The End.