516 Posted Topics

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
125
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
144
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
250
Member Avatar for Rachna0309
Member Avatar for Rachna0309
Member Avatar for summey
Member Avatar for summey
0
346
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
687
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
84
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
904
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
112
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
274
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
173
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
185
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
102
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
106
Member Avatar for priyanka9

you need to use dataview and filter the dataview with dataview.rowfilter method and bind the result back to the grid.

Member Avatar for Pgmer
0
218
Member Avatar for pratik65

You should truncate the table to get the ID back to 1. If the Id column is set to increment seed.

Member Avatar for Reverend Jim
0
184
Member Avatar for themaj

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...

Member Avatar for Reverend Jim
0
203
Member Avatar for foreverangel02

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/)

Member Avatar for Pgmer
0
290
Member Avatar for dearjoy
Member Avatar for Pgmer
0
163
Member Avatar for tinu28
Member Avatar for TnTinMN
0
104
Member Avatar for ashvyas
Member Avatar for kjk86

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...*

Member Avatar for Pgmer
0
219
Member Avatar for jhedonghae

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?

Member Avatar for Codefiva
0
187
Member Avatar for consc197
Member Avatar for consc197
0
3K

The End.