Click here to Skip to main content
15,909,199 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: subreport (displaying the fields inside) Pin
steve_rm1-Nov-06 17:47
steve_rm1-Nov-06 17:47 
QuestionRe: subreport section arranging Pin
steve_rm1-Nov-06 17:49
steve_rm1-Nov-06 17:49 
QuestionHow to get the ProcessID of any object initialized by applicaiton ? Pin
Rizwan Bashir1-Nov-06 3:04
Rizwan Bashir1-Nov-06 3:04 
AnswerRe: How to get the ProcessID of any object initialized by applicaiton ? Pin
Yona Low1-Nov-06 4:17
Yona Low1-Nov-06 4:17 
GeneralRe: How to get the ProcessID of any object initialized by applicaiton ? Pin
Rizwan Bashir1-Nov-06 4:29
Rizwan Bashir1-Nov-06 4:29 
GeneralRe: How to get the ProcessID of any object initialized by applicaiton ? Pin
Yona Low1-Nov-06 4:56
Yona Low1-Nov-06 4:56 
GeneralRe: How to get the ProcessID of any object initialized by applicaiton ? Pin
Rizwan Bashir1-Nov-06 20:47
Rizwan Bashir1-Nov-06 20:47 
GeneralRe: How to get the ProcessID of any object initialized by applicaiton ? Pin
Yona Low2-Nov-06 3:44
Yona Low2-Nov-06 3:44 
Interesting though, i just tried the code below and it worked great.
I know its VBScript but the concept is the same.


Dim xls
Set xls = CreateObject("Excel.Application")

with xls
.Application.Visible = False
.Workbooks.Add
.Sheets("Sheet1").Select
.ActiveSheet.Cells(1,1).Value = "Hello"
.Sheets("Sheet1").SaveAs("hello.xls")
.Application.Quit
End With

Set xls = Nothing
QuestionHelp, please Pin
alexfromto1-Nov-06 3:00
alexfromto1-Nov-06 3:00 
AnswerRe: Help, please Pin
Are Jay1-Nov-06 10:23
Are Jay1-Nov-06 10:23 
GeneralRe: Help, please Pin
alexfromto1-Nov-06 10:35
alexfromto1-Nov-06 10:35 
QuestionInstalling a Windows Service Pin
steve.borman1-Nov-06 1:27
steve.borman1-Nov-06 1:27 
QuestionWhat is the use of application Pin
garimajain_mca1-Nov-06 1:15
garimajain_mca1-Nov-06 1:15 
AnswerRe: What is the use of application Pin
nlarson111-Nov-06 10:17
nlarson111-Nov-06 10:17 
Questioncopy dataset to dataset Pin
K edar V1-Nov-06 0:32
K edar V1-Nov-06 0:32 
AnswerRe: copy dataset to dataset Pin
Are Jay1-Nov-06 10:53
Are Jay1-Nov-06 10:53 
GeneralRe: copy dataset to dataset Pin
K edar V1-Nov-06 17:40
K edar V1-Nov-06 17:40 
QuestionWeird Error Pin
Muntyness1-Nov-06 0:09
Muntyness1-Nov-06 0:09 
AnswerRe: Weird Error Pin
OldWarhorse1-Nov-06 1:55
OldWarhorse1-Nov-06 1:55 
GeneralRe: Weird Error Pin
Muntyness1-Nov-06 4:00
Muntyness1-Nov-06 4:00 
GeneralRe: Weird Error Pin
OldWarhorse1-Nov-06 13:55
OldWarhorse1-Nov-06 13:55 
GeneralRe: Weird Error Pin
OldWarhorse2-Nov-06 3:13
OldWarhorse2-Nov-06 3:13 
QuestionHow can I pop up a window in VB.net? Pin
walalawll31-Oct-06 21:52
walalawll31-Oct-06 21:52 
AnswerRe: How can I pop up a window in VB.net? Pin
just3ala231-Oct-06 22:49
just3ala231-Oct-06 22:49 
GeneralRe: How can I pop up a window in VB.net? Pin
walalawll31-Oct-06 23:01
walalawll31-Oct-06 23:01 

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.