- 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
516 Posted Topics
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? | |
Re: please put break point in Loadpeople method and see are you getting the connectionto DB? and are you getting any records in TABLE | |
Re: 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? | |
Re: 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 … | |
Re: please show us the code what you have sofar for reading the text file | |
Re: please post your Query here | |
Re: you want to Select the multiple files once and load into list box? using open FileDialog? | |
Re: please show your code what you have so far. | |
Re: this should give you hint.[Click Here](http://www.daniweb.com/software-development/vbnet/threads/384348/validating-a-label) | |
Re: Good code to understand the concept of delegates for those who never used in real time. | |
Re: 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 … | |
Re: 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 | |
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 … | |
Re: you need to write a program to read excel file using .net and use the same application to write back into another excel. | |
Re: 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. | |
Re: 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 | |
Re: In ts you subtract 60 minutes if it is a timespan, before showing or assigning to the text box TotalHWtextbox. | |
Re: 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. | |
Re: It should be txt_cash_acc.text="" or txt_cash_acc.text= string.empty | |
Re: 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. | |
Re: how ur passing the date from Front end? as a datetime ? or string? Whats ur DB datatype for that column??? |
The End.