- Strength to Increase Rep
- +10
- Strength to Decrease Rep
- -2
- Upvotes Received
- 29
- Posts with Upvotes
- 29
- Upvoting Members
- 26
- Downvotes Received
- 7
- Posts with Downvotes
- 7
- Downvoting Members
- 6
Re: Using the rowindex. or get the number of rows in grid and select the last row | |
Re: Are you using any database? Are you keeping the details of user name and password in DB? | |
Re: Hi ruby, Please dont post in Someone else thread. And it is already solved. please open other thread. | |
Re: Dear rponraj please open a new thread for your problem. do not post in some one else post. | |
Re: What is the data type in server where u save the image file? | |
Re: And also make sure that u have passed the correct credential for server. | |
Re: 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.. | |
Re: Get the datagridview records into table or dataset and loopthough the recods and add to list view in loop | |
Re: 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. | |
Re: 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 | |
Re: [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 … | |
Re: If ur not loading Millions of records into grid then you can write custom code to serach for perticular record in grid using loop. | |
Re: [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. … | |
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.. | |
Re: You need to run the installer files to Install VS2008 and SQL 2005. You can install anyone first. They are independent. | |
Re: 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? | |
Re: 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... | |
Re: Till now how far you wrote code for this? You want someone to write code for you? | |
Re: 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 | |
Re: 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. | |
Re: Which database are you using? you need to write a wizrd kind of application which Attach the DB files DB. | |
Re: What is the problem with above code? | |
Re: Sending internally? Chek if your Firewall letting to use the smtp. | |
Re: Can you put a break point and check what is happening when da.fill(dt)? Whats coming into dt? is it blank? | |
Re: you need to instantiate the class clsKYC like Dim objclsKYC as new clsKYC And then call the function objclsKYC.InfoCheking | |
Re: at this below line your not passing the password string connectionString = "server=localhost;User Id=root;database=customerInfo;Password="; | |
Re: you can bind dataset to gridview and you can play anything in dataset. Which eventually have datatable inside. | |
Re: Its better get the resluts from DB once into one datatable and bind it. | |
Re: 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 … | |
Re: Are you calling the web page from your application? |