Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
68% Quality Score
Upvotes Received
4
Posts with Upvotes
4
Upvoting Members
4
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
1 Commented Post
~9K People Reached
About Me

A well of knowledge

Interests
Programming, Books, Movies
Favorite Tags

17 Posted Topics

Member Avatar for dashawk

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 …

Member Avatar for Santanu.Das
0
5K
Member Avatar for dashawk

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 …

Member Avatar for dashawk
0
276
Member Avatar for jayrbete

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

Member Avatar for brylle
0
279
Member Avatar for SaaDwTk

your post is in the wrong place. this should be moved to php web development...

Member Avatar for ARdeveloper
0
347
Member Avatar for vivekanandaan

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 …

Member Avatar for malkit.672
0
197
Member Avatar for dashawk

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 …

Member Avatar for dashawk
0
262
Member Avatar for dashawk

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

Member Avatar for gusano79
0
597
Member Avatar for dashawk

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

Member Avatar for Reverend Jim
0
263
Member Avatar for dashawk

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?

0
79
Member Avatar for sigridish

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 …

Member Avatar for hericles
0
228
Member Avatar for dashawk

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 …

Member Avatar for cereal
0
255
Member Avatar for dashawk

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

Member Avatar for cereal
0
427
Member Avatar for dashawk

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

Member Avatar for dashawk
0
443
Member Avatar for daniells

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 …

Member Avatar for dashawk
0
82
Member Avatar for staticwave

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:", …

Member Avatar for staticwave
0
409
Member Avatar for SolidSora

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

Member Avatar for dashawk
0
109
Member Avatar for Oneryavuz

[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] …

Member Avatar for Oneryavuz
0
110

The End.