- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
- Interests
- Sports, Movies
37 Posted Topics
![]() | Re: Why dont You use this to check if "-" exist in the string [CODE] if(substr_count($stockdata['diff'],'-')>0){ //while anything you want } [/CODE] ![]() |
Re: You should try this [CODE]Dim box As Integer Private Sub NNameTextbox_GotFocus(ByVal sender As Object, ByVal e As System.EventArgs) Handles NameTextbox.GotFocus box = 1 End Sub Private Sub DOBTextbox_GotFocus(ByVal sender As Object, ByVal e As System.EventArgs) Handles DOBTextbox.GotFocus box = 2 End Sub Private Sub IDTextbox_GotFocus(ByVal sender As Object, ByVal e … | |
Re: Sorry You should move this to Java section | |
Re: On the properties explorer You see acceptButton, then select the button and if you want to use codes to do this you can use this function [CODE]Protected Overrides Function ProcessDialogKey(ByVal keyData As System.Windows.Forms.Keys) As Boolean Select Case (keyData) Case Keys.Enter 'the action you want Return True End Select Return MyBase.ProcessDialogKey(keyData) … | |
Re: It depends on the html tag displaying the text and its id or name for example lets say you got an text response which is HTML and the tag displaying this text you want to modify is a DIV tag with id "message" you can work with it like this. … | |
Re: this might work [CODE] Private Sub btnsubmit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnsubmit.Click Dim litem As ListViewItem Dim litems As ListView.CheckedListViewItemCollection litems = lstviewcandidate.CheckedItems Dim checkstring as String For Each litem In litems checkstring &=litem.Text & vbCrLf Next MsgBox(checkstring, MsgBoxStyle.OkOnly + MsgBoxStyle.Information, "Search Results: 0") End Sub[/CODE] | |
Re: you should try using [COLOR="Blue"]if[/COLOR] statement to check if the label has already been drag and dropped | |
Re: Try This [CODE] Textbox.Text=Application.StartupPath [/CODE] this should get the path | |
Re: Try installing Ms access database and .net framework on the other systems | |
Re: Since you are using php, i would suggest you put the values in Sessions or Cookies. | |
Re: I would say create a new project then import the forms you have created from the former project | |
Re: You should create a new project in .NET 2.0 then import already created forms into the new .NET project, that should work | |
Re: You would need to understand javascript to accomplish this. | |
Re: You would need to use javascript | |
Re: Why dont you create a fuction to call all of this functions like this [CODE]function allfunction(){ showUser1('taj-mahal'); showUser('taj-mahal'); showUser2('taj-mahal'); } <body id="body" onload="allfunction();"> [/CODE] and for your info your posting a javascript thread in a php thread ![]() | |
Re: try using this [CODE] Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load dim filepath as string= Application.StartupPath & "filename" picturebox1.image=system.drawing.image.fromfile(filepath) End Sub[/CODE] | |
Re: [QUOTE=;][/QUOTE] Do you expect someone to develop it for you or something else | |
Re: You can not play videos with PHP, You have to use flv player or other video players. OK! | |
Re: you can get the path by using this [CODE]Application.StartupPath & "Animation.swf"[/CODE] | |
Re: Try this [CODE]<? $day=getdate(); echo($day['wday']."/".$day['mon'])."/".$day['year']); ?>[/CODE] ![]() | |
Re: try this [CODE]Private Sub txtNav_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtNav.KeyDown If e.KeyCode = Keys.Enter Then WebBrowser1.Url = New System.Uri(txtNav.Text, System.UriKind.Absolute) End If End Sub[/CODE] | |
Re: try this, if you have any problem with it let me know [CODE] Dim datas as DataSet Dim datar as DataRow dim oledat as SqlDataAdapter oledat=new SqlDataAdapter("select information from tablename where username='" & username.text & "'",connection) oledat.Fill(datas) For Each datar in datas.Tables(0).Rows Textbox1.Text = datar.Item("information") Next [/CODE] | |
Re: You could try 1.Timetable management System 2. Human Resources System 3. Voting Software | |
Re: [QUOTE=;][/QUOTE] in sql query quotes missing in age insertion this is should work $query = "INSERT INTO Customers (MobileNumber,Sex,FirstName,LastName,Age,Email) VALUES ('$cellno','$Title'','$FirstName','$SurName','8','$Email')"; | |
| |
Re: Try this, this could help [COLOR="Green"]Dim[/COLOR] pan [COLOR="green"]As[/COLOR] Panel [COLOR="green"]Dim[/COLOR] tabpag [COLOR="green"]As[/COLOR] TabPage [COLOR="green"]Dim[/COLOR] con [COLOR="green"]As [/COLOR]controlname pan = [COLOR="green"]New[/COLOR] Panel con = [COLOR="green"]New[/COLOR] controlname pan.Controls.Add(con) tabpag = [COLOR="green"]New[/COLOR] TabPage tabpag.Controls.Add(pan) TabControl1.Controls.Add(tabpag) | |
Re: You can create programs that can be installed by using setup creator in your visual studio. About your other problem am still working on it, can you please try to elaborate more on it | |
Re: if the Id Column is set to auto increment, You can use this sql statement $sql="[COLOR="red"]Insert into users values("NULL","email@mail.com", "firstname","lastname")[/COLOR]" | |
Re: You should try using javascript for example lets assume the id of the checkbox is "chec" [COLOR="Green"]function[/COLOR] check(){ if (document.getElementById("chec").checked){ //anything you want it to do }[COLOR="Green"]else[/COLOR]{ //anything you want it to do } if you must use php the codes must be on the page your submitting the forms … ![]() | |
Re: try using this code to generate random numbers [COLOR="Green"]Dim[/COLOR] a [COLOR="green"]as integer[/COLOR] a = [COLOR="green"]Rnd[/COLOR](10000000) * 10000000000000 textbox1.text= a | |
| |
Re: you should use the name of the forms for example form1.textbox1.text="testing" | |
![]() | |
Re: You can try using POST,GET,SESSION OR COOKIES | |
Re: Why dont you just create the SQL statement from Sql 2000 then execute it in Access |
The End.