Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #1K
~11.3K People Reached
Interests
Sports, Movies
Favorite Tags

37 Posted Topics

Member Avatar for cuonic

Why dont You use this to check if "-" exist in the string [CODE] if(substr_count($stockdata['diff'],'-')>0){ //while anything you want } [/CODE]

Member Avatar for cuonic
0
142
Member Avatar for leemc1989

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 …

Member Avatar for thanasis_gt
0
523
Member Avatar for SaaDwTk
Member Avatar for y0yie_333
Member Avatar for Dazamondo

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) …

Member Avatar for codeorder
0
1K
Member Avatar for am5a03

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. …

Member Avatar for am5a03
0
103
Member Avatar for angel392004

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]

Member Avatar for angel392004
0
181
Member Avatar for murid

you should try using [COLOR="Blue"]if[/COLOR] statement to check if the label has already been drag and dropped

Member Avatar for MindFreaks
0
314
Member Avatar for sophie_kiu

Try This [CODE] Textbox.Text=Application.StartupPath [/CODE] this should get the path

Member Avatar for meffe
0
82
Member Avatar for notmasteryet
Member Avatar for jzlonely
Member Avatar for wish02

Since you are using php, i would suggest you put the values in Sessions or Cookies.

Member Avatar for wish02
0
60
Member Avatar for bluem1
Member Avatar for bluem1
0
1K
Member Avatar for Patplays852

You should create a new project in .NET 2.0 then import already created forms into the new .NET project, that should work

Member Avatar for rohan_tahil
0
244
Member Avatar for Nahiyan
Member Avatar for Ole Raptor
-1
107
Member Avatar for jv143irish
Member Avatar for shailendra_agra

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

Member Avatar for diafol
0
75
Member Avatar for tony_waza

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]

Member Avatar for Teme64
0
217
Member Avatar for Svelte

[QUOTE=;][/QUOTE] Do you expect someone to develop it for you or something else

Member Avatar for Svelte
0
70
Member Avatar for shailendra_agra

You can not play videos with PHP, You have to use flv player or other video players. OK!

Member Avatar for vibhaJ
0
89
Member Avatar for Kingcoder210

you can get the path by using this [CODE]Application.StartupPath & "Animation.swf"[/CODE]

Member Avatar for meffe
1
263
Member Avatar for harry88

Try this [CODE]<? $day=getdate(); echo($day['wday']."/".$day['mon'])."/".$day['year']); ?>[/CODE]

Member Avatar for rajarajan2017
0
92
Member Avatar for Rated X

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]

Member Avatar for Rated X
0
168
Member Avatar for dionisov

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]

Member Avatar for meffe
0
99
Member Avatar for Kshitija R Naik

You could try 1.Timetable management System 2. Human Resources System 3. Voting Software

Member Avatar for meffe
0
128
Member Avatar for Keidi

[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')";

Member Avatar for scaiferw
0
199
Member Avatar for alonso_siang
Member Avatar for wdavis

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)

Member Avatar for meffe
0
99
Member Avatar for El_Tazar

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

Member Avatar for El_Tazar
0
72
Member Avatar for ben.matthews18

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]"

Member Avatar for coreyavis
0
115
Member Avatar for Alexii

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 …

Member Avatar for deleted1234
0
119
Member Avatar for tomikimi

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

Member Avatar for dlplenin
0
115
Member Avatar for veledrom
Member Avatar for hsncvs

you should use the name of the forms for example form1.textbox1.text="testing"

Member Avatar for hsncvs
0
97
Member Avatar for sugikrish
Member Avatar for rajarajan2017
0
101
Member Avatar for Ambislm
Member Avatar for bghodsi
Member Avatar for meffe
0
97

The End.