Click here to Skip to main content
15,924,367 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: XML into byte ?? Pin
Chris Quick21-Sep-04 12:19
Chris Quick21-Sep-04 12:19 
AnswerRe: XML into byte ?? Pin
Christian Graus21-Sep-04 12:52
protectorChristian Graus21-Sep-04 12:52 
GeneralRe: XML into byte ?? Pin
XGaMeS22-Sep-04 1:00
XGaMeS22-Sep-04 1:00 
GeneralRe: XML into byte ?? Pin
Chris Quick22-Sep-04 3:36
Chris Quick22-Sep-04 3:36 
GeneralRe: XML into byte ?? Pin
Dave Kreskowiak22-Sep-04 4:15
mveDave Kreskowiak22-Sep-04 4:15 
GeneralRe: XML into byte ?? Pin
Christian Graus22-Sep-04 10:32
protectorChristian Graus22-Sep-04 10:32 
GeneralDataGrid Pin
Jeeva Jose21-Sep-04 7:50
Jeeva Jose21-Sep-04 7:50 
GeneralRe: DataGrid Pin
Britnt724-Sep-04 3:35
Britnt724-Sep-04 3:35 
When enter key or button is pressed, add new row to dataset:
Dim drNew As DataRow
drNew = DATASET.Tables(0).NewRow 'Create the new row
drNew.Item("FIRST") = txtFirst.Text
drNew.Item("LAST") = txtLast.Text
drNew.Item("PHONE") = txtHome.Text
DATASET.Tables(0).Rows.Add(drNew) 'Adds new row to dataset
Hope this helpsSmile | :)

Beginner in ASP.Net and VB.Net
QuestionTreeview changes...? Pin
User 137956521-Sep-04 6:37
User 137956521-Sep-04 6:37 
AnswerRe: Treeview changes...? Pin
Dave Kreskowiak23-Sep-04 2:40
mveDave Kreskowiak23-Sep-04 2:40 
GeneralMultiple Data Fields in List Box Pin
lildragon21-Sep-04 4:39
lildragon21-Sep-04 4:39 
GeneralRe: Multiple Data Fields in List Box Pin
Dave Kreskowiak23-Sep-04 3:14
mveDave Kreskowiak23-Sep-04 3:14 
GeneralRe: Multiple Data Fields in List Box Pin
Anonymous23-Sep-04 9:29
Anonymous23-Sep-04 9:29 
GeneralRe: Multiple Data Fields in List Box Pin
lildragon@hotmail.com23-Sep-04 9:29
susslildragon@hotmail.com23-Sep-04 9:29 
GeneralEvent handler that can apply to all controls Pin
lildragon21-Sep-04 4:37
lildragon21-Sep-04 4:37 
GeneralRe: Event handler that can apply to all controls Pin
Chris Quick21-Sep-04 11:19
Chris Quick21-Sep-04 11:19 
GeneralRe: Event handler that can apply to all controls Pin
Anonymous23-Sep-04 9:32
Anonymous23-Sep-04 9:32 
GeneralEvent in VBA Pin
macmac3821-Sep-04 1:47
macmac3821-Sep-04 1:47 
GeneralCustom PaperSize for printing a receipt Pin
Member 132035221-Sep-04 0:01
Member 132035221-Sep-04 0:01 
GeneralRe: Custom PaperSize for printing a receipt Pin
sreejith ss nair21-Sep-04 1:23
sreejith ss nair21-Sep-04 1:23 
GeneralRe: Custom PaperSize for printing a receipt Pin
Member 132035221-Sep-04 1:47
Member 132035221-Sep-04 1:47 
GeneralRe: Custom PaperSize for printing a receipt Pin
sreejith ss nair21-Sep-04 1:59
sreejith ss nair21-Sep-04 1:59 
GeneralRe: Custom PaperSize for printing a receipt Pin
21-Sep-04 5:13
suss21-Sep-04 5:13 
GeneralRe: Custom PaperSize for printing a receipt Pin
Duncan Edwards Jones22-Sep-04 4:02
professionalDuncan Edwards Jones22-Sep-04 4:02 
GeneralRe: Custom PaperSize for printing a receipt Pin
Member 132035222-Sep-04 21:47
Member 132035222-Sep-04 21:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.