Posts
 
Reputation
Joined
Last Seen
Ranked #489
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
~291.99K People Reached
Favorite Tags

516 Posted Topics

Member Avatar for HibaPro

Using the rowindex. or get the number of rows in grid and select the last row

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
3K
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
745
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
242
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
231
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
893
Member Avatar for tashee2007
Member Avatar for tashee2007
0
253
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
717
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
106
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
121
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
492
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
286
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
112
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
1K
Member Avatar for Keran
Member Avatar for shhh

please put break point in Loadpeople method and see are you getting the connectionto DB? and are you getting any records in TABLE

Member Avatar for Pgmer
0
129
Member Avatar for prince.abankwah.5

you need to write code which connects to DB. If you have created the procedure in Database send the parameted and get the records from DB and assign to variable. You need code or hint?

Member Avatar for prince.abankwah.5
0
146
Member Avatar for Rachna0309

Private Sub LoadCommaDelimetedTextFileIntoListBox(ByVal filePath As String) ' Declare a variable named theTextFieldParser of type TextFieldParser. Dim theTextFieldParser As FileIO.TextFieldParser ' Call the My feature's OpenTextFieldParser method passing in a file path. ' Assign the resulting TxtFileParser object to theTextFieldParser variable. theTextFieldParser = My.Computer.FileSystem.OpenTextFieldParser(filePath) ' Set TextFieldParser object's TextFieldType property to …

Member Avatar for Pgmer
0
253
Member Avatar for Rachna0309
Member Avatar for Rachna0309
Member Avatar for summey
Member Avatar for summey
0
349
Member Avatar for zalen17
Member Avatar for boher

this should give you hint.[Click Here](http://www.daniweb.com/software-development/vbnet/threads/384348/validating-a-label)

Member Avatar for Pgmer
0
692
Member Avatar for Reverend Jim

Good code to understand the concept of delegates for those who never used in real time.

Member Avatar for Reverend Jim
1
2K
Member Avatar for Neethaa
Re: Prob

You need to get data from DB into dataset and assign that dataset to combobox as datasource and set the Displaymember and Value member of the combobox. Then in selected index changed event of the combobox get the value upon which you want to get the data from DB and …

Member Avatar for Pgmer
0
86
Member Avatar for lulu79

please post your Query . I mean your final sqlstr.. And one thing i noticed is line number 13 is having 2 times SET key word

Member Avatar for lulu79
0
910
Member Avatar for Pgmer

Hi, I have my data which looks like '0/1,0/2,0/3,0/4' or '0/1,0/2,0/6,0/3,0/4' I need to select min and max of the numbers for example for first example my output should be 0/1-0/4 and for second it should be 0/1-0/6.. I am able to get like 0-1 or 0-6.. Any help would …

Member Avatar for Pgmer
1
114
Member Avatar for joshl_1995

you need to write a program to read excel file using .net and use the same application to write back into another excel.

Member Avatar for Reverend Jim
0
278
Member Avatar for sundar.mjk

put break point on line 28 and see data is there in mydata4? becuase ur assigning it to Mytable which is new table. so i suspect Mydata4 is blank.

Member Avatar for G_Waddell
0
174
Member Avatar for lulu79

logic looks ok. Check dp.Color is exact method to give the color to chart. You can try giving color to one chart in form load or click of button for testing. if this works then above code should work

Member Avatar for lulu79
0
2K
Member Avatar for jhedonghae

In ts you subtract 60 minutes if it is a timespan, before showing or assigning to the text box TotalHWtextbox.

Member Avatar for G_Waddell
0
188
Member Avatar for seeking_help

If your reading the specific file or image from specific location then you could code it in C application which is EXE which your running when clicking button on vb form.

Member Avatar for Pgmer
0
107
Member Avatar for sheetal1289
Member Avatar for tomexlfc

Make the primary key in table for Enquiry and order table.with autoincrement as 1. I am not sure how to do this in MS access DB. while showing allways u can append some fixed text and u can save that in another column of table.

Member Avatar for jertos
-1
5K
Member Avatar for bestex

how ur passing the date from Front end? as a datetime ? or string? Whats ur DB datatype for that column???

Member Avatar for swayzion
0
108

The End.