516 Posted Topics
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??? | |
Re: you need to use dataview and filter the dataview with dataview.rowfilter method and bind the result back to the grid. | |
Re: You should truncate the table to get the ID back to 1. If the Id column is set to increment seed. | |
Re: Check before cmd.executeNonQuery on ds.Tables(0).Rows(iRows).Item(5) & "," & ds.Tables(0).Rows(iRows).Item(6) & " What ur getting at these items... | |
Re: check you have the proper sqlnet.ora and tnsnames.ora files. And make sure these file have the connection properties to your server. And for connection string you can refere the link [Click Here](http://www.connectionstrings.com/) | |
Re: refer this link [Click Here](http://www.connectionstrings.com/) | |
Re: Do you know in which row,column,cell you have the value? If not do it in a loop and compare. | |
Re: I dont think we have dialog box with 12 buttons, So you need to write ur own Dialog box. | |
Re: Use list or or Array to hold Dim sList as new list(of String) you must use the loop here something like below For i as integer=0 to DataGridView1.rows.count-1 sList.items.add(DataGridView1.rows(i).item("Column index or Name")) Next *Note:The above code is not exact code or syntax.. Just an idea to start with...* | |
Re: Use datetime picker and set as you need to get only date or time. Show the selected time in text box. Is this what you were expecting? | |
Re: What is the problem? Are you able to get into DB after connection.open()?? |
The End.