Click here to Skip to main content
16,005,222 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Validate User/Password Pin
Colin Angus Mackay16-Dec-03 11:19
Colin Angus Mackay16-Dec-03 11:19 
GeneralRe: Validate User/Password Pin
vincent.reynolds16-Dec-03 11:43
vincent.reynolds16-Dec-03 11:43 
GeneralRe: Validate User/Password Pin
johnkotlarik29-Mar-04 10:26
johnkotlarik29-Mar-04 10:26 
QuestionHow to make a form on the top of all forms? Pin
MJay16-Dec-03 2:11
MJay16-Dec-03 2:11 
AnswerRe: How to make a form on the top of all forms? Pin
Anonymous16-Dec-03 7:21
Anonymous16-Dec-03 7:21 
GeneralRe: How to make a form on the top of all forms? Pin
Zipadie Doodah18-Dec-03 5:17
Zipadie Doodah18-Dec-03 5:17 
GeneralExport to Excel Pin
helia16-Dec-03 1:26
helia16-Dec-03 1:26 
GeneralRe: Export to Excel Pin
Manoj Madhavan16-Dec-03 23:00
Manoj Madhavan16-Dec-03 23:00 
Its very easy, you can write your data to a simple csv file with comma as delemter...

for eg...
if you have data as
1 abc abc1
2 def def1

then
you can write this data as
open "somefile.csv" for output as #1
dim i as integer
for i = 0 to datagrid.count - 1
dim wline as string
wline = datagrid1(0).text & "," datagrid(1).text & "," & datagrid(1).text & vbcrlf()
output #1, wline
next i
close(1)

This is just a concept not actual code the purpose is to explain u just to add datagrid text to csv file..
thinking u know how to get data from the gridtable..

This csv file can then be opened easily in excel..
Hope this helps u in writing ur code.

Thanks!Smile | :)

Manoj Madhavan
Generaldatagrid Pin
coolerbob16-Dec-03 0:01
coolerbob16-Dec-03 0:01 
GeneralODBC Information (answer it soon) Pin
xprtguro15-Dec-03 23:14
xprtguro15-Dec-03 23:14 
Generalproblem in activexcontrol.... Pin
Vipin Bokariya15-Dec-03 20:27
Vipin Bokariya15-Dec-03 20:27 
GeneralRe: problem in activexcontrol.... Pin
steff kamush16-Dec-03 21:31
steff kamush16-Dec-03 21:31 
GeneralRe: problem in activexcontrol.... Pin
R Sharma17-Dec-03 6:18
R Sharma17-Dec-03 6:18 
GeneralCommon Events Pin
jboss15-Dec-03 15:36
jboss15-Dec-03 15:36 
GeneralRe: Common Events Pin
steff kamush15-Dec-03 20:41
steff kamush15-Dec-03 20:41 
GeneralRe: Common Events Pin
jboss16-Dec-03 14:53
jboss16-Dec-03 14:53 
QuestionHow to read the audio volume meter in VB.NET Pin
nordta15-Dec-03 11:26
nordta15-Dec-03 11:26 
QuestionHow to make shortcut/hotkey Pin
cometz15-Dec-03 6:08
cometz15-Dec-03 6:08 
QuestionHow to execute Dos command line in VB? Pin
Thunder200415-Dec-03 3:07
Thunder200415-Dec-03 3:07 
AnswerRe: How to execute Dos command line in VB? Pin
Thunder200415-Dec-03 4:04
Thunder200415-Dec-03 4:04 
GeneralNeed a huge favor and an honest oppinion Pin
cnurse15-Dec-03 0:27
cnurse15-Dec-03 0:27 
Questionhow to brush color into a textbox ? Pin
dungti14-Dec-03 20:02
dungti14-Dec-03 20:02 
AnswerRe: how to brush color into a textbox ? Pin
cnurse15-Dec-03 0:30
cnurse15-Dec-03 0:30 
GeneralRe: how to brush color into a textbox ? Pin
dungti15-Dec-03 15:19
dungti15-Dec-03 15:19 
GeneralAutomatically loading object properties from SQL data sources Pin
cnurse13-Dec-03 22:39
cnurse13-Dec-03 22:39 

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.