- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
9 Posted Topics
Hello, I develop a simple script that capture the product using .net WebBrowser control. this is the link http://www.groupon.cl/descuentos/multiple-locations/desde-39900-por-8-sesiones-de-depilacion-ipl-en-axila-rebaje-de-bikini-con-opcion-a-zona-facial-en-estetica-carola-rodriguez-hasta-90-off I have a problem in getting the time in jquery count donw control. Please help me to find a solution. Regards, jeffrey
Hello, I have a application created in windows using c# language. Now my client wants to run the executable file on the centOS server. Do you have idea on how to run my executable file into centOS server?..please help me. I appriciate some suggestion. Regards!
check the namespace of your class, the namespace in your winforms must the same with the namespace in your class, if not you must: Using ClassNameSpace; it must be on same project also.
In your firs form you do this private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e) { Item i = new Item(); i.GetItem = dataGridView1[0].value(); // this get the first index of the grid which is the id you want to pass to other form. i.show(); } In your second form: private int …
you can do that in split method. string val = "41/3/100"; string[] val1 = val.split('/'); console.write("RESULT" + val1[2]);
First, make a function to query all deptno form your database e.g "SELECT deptno FROM TABLE" and then put that function to load form. Second, your not going to update deptno because, i guesse in your database design deptno is a primaty key. I'm advising you that if your going …
try this code,I am using here SQL server but it is the same logic when you verify your username and password. string cmdstr = "Select count(*) from tblCustRecords where Username='" + TextBoxUN.Text + "'"; SqlCommand checkUser = new SqlCommand(cmdstr, con); int temp = Convert.ToInt32(checkUser.ExecuteScalar().ToString()); if (temp == 1) { string …
Hello, I have a problem to this html code.I want to get only the data inside the href,but the data is dynamic. <a title="Click here to see docket information" href="/ccm/do/docket?county=65&data=eedd78d10fd9da341e05b25b48b62013">652012CC000006CCXXXX</a> I am not really familiar in regex.I am using this code to extract the html inside the href. MatchCollection m1 …
Hello there, I'm a newbie in regex in c#, and I have a problem in parsing the html tag using regex in the <span> tag. here the html file that i want to get the value. <li><span>Date of birth</span>December 16, 2000 (Age: 12)</li> i want to get the December 16, …
The End.
notconfirmed