- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 4
- Posts with Upvotes
- 4
- Upvoting Members
- 4
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
17 Posted Topics
Hi guys, I want to multiply or add the values of two or more cells in a datagridview control in a row and and should also be auto-saved in the database after entering datas in the cell. I am using SQL Server 2008 for my database. Please do take a …
Hi guys, I have a php code that displays a list of dishes where a user can check on those dishes and then save the selection to the database. My code works find when selecting and saving the data. But the problem is that when I try to uncheck one …
hi, if you want to solve this problem, i have a video tutorial for this. Visit http://jasontuts.blogspot.com/ for the tutorial jayrbete.. Thanks
your post is in the wrong place. this should be moved to php web development...
As what I have understand in your problem, you are trying to get the biggest number from the field "mrn_no". Then in your code maxrows = ds.Tables("mr_head").Rows.count... You know, this code will count the number of rows found in your query and not the max number from "mrn_no". So if …
Hi guys, I have a project that reads a json data and parse it. The program is working properly except that I cannot get its individual rows and view it in separate panels. Here is my code: [CODE] Imports System.Net.Json Public Class Form2 Private Sub Button1_Click(ByVal sender As System.Object, ByVal …
I have been searching this topic over the internet and found a few solutions, but I can't seem to find any for Visual Basic. I tried json from codeplex, newtonsoft but has no luck... the json data that i want to parse is this [CODE]{"sample":[{"id":"1","fname":"kristine","lname":"reyes","address":"manila"}]}[/CODE] hope anyone could help.. thanks
guys, can anyone help me on this problem? i have two tables then what I want is that, when an identical item is found in table2, it will not be displayed. Example: [CODE] Table1 Table2 item1 other1 item2 other2 item3 item2 item4 item3 [/CODE] Condition: if we use this query: …
Hi guys, I am just wondering if anyone have already developed an application using Visual Basic 2010 with Multitouch gestures? I have some research in these fields but I only get WPF or C# codes but still lacks details.... Anyone could share their ideas?
Hi sigridish, the error occured because you did not add the MYSQL Connector in your reference. To do that, first download a copy of the MYSQL Connector for .NET/6.4.4(is the current version), install it in your system... You can download it here [URL="http://dev.mysql.com/downloads/connector/net/"]http://dev.mysql.com/downloads/connector/net/[/URL] - After installing the connector, in the …
Hi guys, I have a problem on getting the selected radio button and save it in the database. Here is my code: [CODE] <div id="container"> <div id="question1" style="display: inline;"> <p>Question 1</p> <ul> <li><input type="radio" name="q1" value="1" id="ans1" />Answer 1</li> <li><input type="radio" name="q2" value="2" id="ans1"/>Answer 2</li> <li><input type="radio" name="q3" value="3" id="ans1"/>Answer …
Hi guys, I have a problem on my php code and url passing. [B]What it should do:[/B] There are 3 forms of the php file, the [B]"email"[/B], [B]"item1"[/B] and [B]"item2"[/B]. The [B]email form[/B] is hidden by default on page load, it will only be visible if any of the [B]item1[/B] …
Hi guys, I am new here in the community. I need help on how to pass a javascript variable value to a php variable.. I am using jquery to hide form1 when the page loads. My first javascript is working fine. my code is like this: [CODE] <script type="text/javascript"> $(document).ready(function(){ …
Hi daniells, I assume you want a textbox that only accepts letters and not numbers. Here is how to do it: [CODE] Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress Dim YOURVARIABLE As String = "0123456789" If InStr(YOURVARIABLE, e.KeyChar.ToString) = 0 Then e.Handled = False Else …
I found some errors in your code. I have revised it and it looked like this: [CODE] <?php $labels = array( "CompanyName"=>"Company Name:", "CompanyRep"=>"Company Rep:", "RepPhone"=>"Phone Number:", "RepEmail"=>"Email Address:", "LegalRep"=>"Legal Rep:", "LegalPhone"=>"Phone Number:", "LegalEmail"=>"Email Address:", "LegalAlert"=>"Alert Email:"); $products = array( "Product1"=>"Product 1:", "Product2"=>"Product 2:", "Product3"=>"Product 3:", "Product4"=>"Product 4:", "Product5"=>"Product 5:", …
i revised your code and it look like this: [CODE] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Posted</title> </head> <body> <? $name = $_REQUEST["name"]; $date = $_REQUEST["date"]; $make = $_REQUEST["make"]; $model = $_REQUEST["model"]; $year = $_REQUEST["year"]; $rating = $_REQUEST["rating"]; $service = …
[QUOTE=Oneryavuz;1629607]i have a control dll and i use this control in my project then i change this controls codes after i do it . appears some error on this lines in form1[designer] [ICODE] Me.Dentisyon1 = New WindowsControlLibrary1.dentisyon Friend WithEvents Dentisyon1 As WindowsControlLibrary1.dentisyon [/ICODE] what should i do? thx for answers[/QUOTE] …
The End.
dashawk