Click here to Skip to main content
15,893,487 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Creating an event at runtime Pin
Guffa21-Jan-06 2:54
Guffa21-Jan-06 2:54 
GeneralRe: Creating an event at runtime Pin
Mark0621-Jan-06 3:19
Mark0621-Jan-06 3:19 
GeneralRe: Creating an event at runtime Pin
Dave Kreskowiak21-Jan-06 4:31
mveDave Kreskowiak21-Jan-06 4:31 
QuestionHelp with calculator Pin
lonewolfa120-Jan-06 17:47
lonewolfa120-Jan-06 17:47 
QuestionHow I can change the values in cells of an EXISTING .xls file? Visual Basic .NET Pin
kostasdiktia220-Jan-06 17:39
kostasdiktia220-Jan-06 17:39 
AnswerRe: How I can change the values in cells of an EXISTING .xls file? Visual Basic .NET Pin
Dave Kreskowiak21-Jan-06 4:28
mveDave Kreskowiak21-Jan-06 4:28 
AnswerRe: How I can change the values in cells of an EXISTING .xls file? Visual Basic .NET Pin
Mekong River21-Jan-06 4:38
Mekong River21-Jan-06 4:38 
AnswerLike this? Pin
kostasdiktia221-Jan-06 4:50
kostasdiktia221-Jan-06 4:50 
Dim xlApp As Excel.Application
Dim xlBook As Excel.Workbook
Dim xlSheet As Excel.Worksheet

xlApp = CType(CreateObject("Excel.Application"), Excel.Application)
xlBook = CType(xlApp.Workbooks.Add, Excel.Workbook)
xlSheet = Ctype(xlBook.Worksheets(1), Excel.Worksheet)

...
xlSheet.Cells(1,2) = "ok" ' # Make your changes #
...

xlSheet.Application.Visible = True

xlSheet.SaveAs("C:.......\example.xls")

Please tell me the code, to open (connect with) the file: C:\...\Print.xls

Thanx for your care...Smile | :)
GeneralRe: Like this? Pin
Dave Kreskowiak21-Jan-06 8:32
mveDave Kreskowiak21-Jan-06 8:32 
Questionhow to put flash in vb.net Pin
ipro3220-Jan-06 16:47
ipro3220-Jan-06 16:47 
AnswerRe: how to put flash in vb.net Pin
Vimal Raj20-Jan-06 20:16
Vimal Raj20-Jan-06 20:16 
AnswerRe: how to put flash in vb.net Pin
Mekong River21-Jan-06 4:41
Mekong River21-Jan-06 4:41 
Questiondatagrid header text Pin
Pravin H20-Jan-06 14:51
Pravin H20-Jan-06 14:51 
AnswerRe: datagrid header text Pin
abhinish20-Jan-06 18:30
abhinish20-Jan-06 18:30 
AnswerRe: datagrid header text Pin
Dave Kreskowiak21-Jan-06 4:26
mveDave Kreskowiak21-Jan-06 4:26 
AnswerRe: datagrid header text Pin
Mekong River21-Jan-06 4:48
Mekong River21-Jan-06 4:48 
QuestionSearch button Pin
shakizil20-Jan-06 7:07
shakizil20-Jan-06 7:07 
AnswerRe: Search button Pin
Mike K. Clark20-Jan-06 9:50
Mike K. Clark20-Jan-06 9:50 
GeneralRe: Search button Pin
shakizil20-Jan-06 10:48
shakizil20-Jan-06 10:48 
AnswerRe: Search button Pin
Mike K. Clark20-Jan-06 13:42
Mike K. Clark20-Jan-06 13:42 
GeneralRe: Search button Pin
Icharus20-Jan-06 15:20
Icharus20-Jan-06 15:20 
QuestionDateTimepicker Pin
shakizil20-Jan-06 5:44
shakizil20-Jan-06 5:44 
AnswerRe: DateTimepicker Pin
Dave Kreskowiak20-Jan-06 6:15
mveDave Kreskowiak20-Jan-06 6:15 
GeneralRe: DateTimepicker Pin
shakizil20-Jan-06 6:23
shakizil20-Jan-06 6:23 
GeneralRe: DateTimepicker Pin
Dave Kreskowiak20-Jan-06 6:30
mveDave Kreskowiak20-Jan-06 6:30 

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.