Posts
 
Reputation
Joined
Last Seen
Ranked #485
Strength to Increase Rep
+10
Strength to Decrease Rep
-2
81% Quality Score
Upvotes Received
29
Posts with Upvotes
29
Upvoting Members
26
Downvotes Received
7
Posts with Downvotes
7
Downvoting Members
6
11 Commented Posts
6 Endorsements
Ranked #299
Ranked #133
~284.22K People Reached
Member Avatar for HibaPro
Member Avatar for Leonardo_13
0
4K
Member Avatar for priya2278
Member Avatar for Allyson_1
0
3K
Member Avatar for sidyusuf

Hi ruby, Please dont post in Someone else thread. And it is already solved. please open other thread.

Member Avatar for ddanbe
0
16K
Member Avatar for kugan80

Dear rponraj please open a new thread for your problem. do not post in some one else post.

Member Avatar for Neena_3
0
5K
Member Avatar for prathapsv3
Member Avatar for Smalls
Member Avatar for akash_12
0
2K
Member Avatar for dashawk

In the cell leave event of Quantity column multiply the column of item amount and Quantity and set the cell value of total Amount column. And it is nice if u give Save button to save the records..

Member Avatar for Santanu.Das
0
5K
Member Avatar for TIP.Synergy

Get the datagridview records into table or dataset and loopthough the recods and add to list view in loop

Member Avatar for kevinmark
0
3K
Member Avatar for tnsankaran

First fill Cat combo with data member and value member. Get the data for secod combo in dataset. in selected index changed event, get the key value of selected item using view sort the items and fill the secon combo.

Member Avatar for spider2vb
0
4K
Member Avatar for bigzos

Where your making changes to the grid item? After making changes are you getting the changes into dataset which ur using in button1.click event? After making the changes to dataset are you making dataset.acceptchanges? please review ur flow

Member Avatar for k.prabhu
0
738
Member Avatar for anup.maverick

[CODE] Private Function ValidateEmail(ByVal EmailAddress As String) As Boolean Try If EmailAddress.Trim.Length = 0 Then MsgBox("Please enter the email Address") Return False End If Dim pattern As String = "^[a-zA-Z][\w\.-]*[a-zA-Z0-9]@[a-zA-Z0-9][\w\.-]*[a-zA-Z0-9]\.[a-zA-Z][a-zA-Z\.]*[a-zA-Z]$" Dim emailAddressMatch As Match = Regex.Match(EmailAddress, pattern) If emailAddressMatch.Success Then Return True Else MsgBox("Please enter the valid email address") Return …

Member Avatar for bru moses
0
1K
Member Avatar for Riteman

If ur not loading Millions of records into grid then you can write custom code to serach for perticular record in grid using loop.

Member Avatar for Takuramatthew
2
12K
Member Avatar for pixma

[CODE] MODULE GetDBConnection Public Function GetConnection() As SqlConnection Dim cnReturn As SqlConnection Dim strConnect As String cnReturn = Nothing strConnect = “Your connection string” cnReturn = New SqlConnection(strConnect) cnReturn.Open() If cnReturn.State = ConnectionState.Open Then GetConnection =cnReturn GetConnection = cnReturn Else MsgBox("Failed to acquire an open connection to the database server. …

Member Avatar for savedlema
0
2K
Member Avatar for Pgmer

Hi Guys, I need to track the application usage statistics using webservice. Basically i need to write a service which can be used in any application to record the usage of application which is calling this service. or Could be a DLL. I need idea's for this. Thanks, pgmer..

Member Avatar for Pgmer
0
236
Member Avatar for kenomote

You need to run the installer files to Install VS2008 and SQL 2005. You can install anyone first. They are independent.

Member Avatar for jeffreyk16
0
228
Member Avatar for paulablanca

Hi you need Single selection or multiple selection? If you want to have multiple selection of rows have you provided any checkbox in Grid view column?

Member Avatar for arun1123
0
4K
Member Avatar for bhagawatshinde

Using server.mapmath read the excel file into dataset. dataset is having property called dataset.readxml. then you can insert the data into database.This is is one approach.. there may be any other...

Member Avatar for softwareskill
0
887
Member Avatar for tashee2007
Member Avatar for tashee2007
0
250
Member Avatar for bwaha

U need to create the Service account i guess. Which can be passed as user name and password from ur application so that all the user in LAN will have access to server. or Pass the credentials to server i.e: User name and password

Member Avatar for adam_k
0
3K
Member Avatar for romz

May be your declaring again in ServerConnection() as Dim conn = New SqlConnection(con) in top also there is a variable with scope public and here its local to that module.

Member Avatar for romz
0
686
Member Avatar for ranvijay005

Which database are you using? you need to write a wizrd kind of application which Attach the DB files DB.

Member Avatar for ranvijay005
0
103
Member Avatar for Dili1234
Member Avatar for Rachna0309
Member Avatar for romz

Can you put a break point and check what is happening when da.fill(dt)? Whats coming into dt? is it blank?

Member Avatar for romz
0
118
Member Avatar for swathys

you need to instantiate the class clsKYC like Dim objclsKYC as new clsKYC And then call the function objclsKYC.InfoCheking

Member Avatar for john.knapp
0
484
Member Avatar for shhh

at this below line your not passing the password string connectionString = "server=localhost;User Id=root;database=customerInfo;Password=";

Member Avatar for kyle.santelices.31
0
283
Member Avatar for Mikey12345

you can bind dataset to gridview and you can play anything in dataset. Which eventually have datatable inside.

Member Avatar for Pgmer
0
107
Member Avatar for lulu79
Member Avatar for lulu79
0
4K
Member Avatar for ponkhiraj

You need to use threadin concept here.. The creating panle should be in a thread and call the thread in form load. When give thread a sleep time so that the form is active and can be used by users. Please read about using thread or background worker on internet …

Member Avatar for Reverend Jim
0
986
Member Avatar for Keran