Click here to Skip to main content
15,886,806 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Hiding the Script Combobox in FONT Dialog Pin
LCARS x3211-Jun-09 22:41
LCARS x3211-Jun-09 22:41 
GeneralRe: Hiding the Script Combobox in FONT Dialog Pin
VB 8.011-Jun-09 23:28
VB 8.011-Jun-09 23:28 
Questionchanging cultutre of a datatable Pin
nitin_ion11-Jun-09 17:18
nitin_ion11-Jun-09 17:18 
AnswerRe: changing cultutre of a datatable Pin
Christian Graus11-Jun-09 17:39
protectorChristian Graus11-Jun-09 17:39 
GeneralRe: changing cultutre of a datatable Pin
nitin_ion11-Jun-09 17:43
nitin_ion11-Jun-09 17:43 
Questionnew export button to open save as dialog for crystal report Pin
hughesie7811-Jun-09 12:12
hughesie7811-Jun-09 12:12 
AnswerRe: new export button to open save as dialog for crystal report Pin
Kschuler12-Jun-09 6:17
Kschuler12-Jun-09 6:17 
AnswerRe: new export button to open save as dialog for crystal report Pin
Kschuler12-Jun-09 6:31
Kschuler12-Jun-09 6:31 
Ooops, I meant to comment about the dialog too. Drag a Save Dialog box control onto your form, to set the default file extension you would do something like this:

'This sets default settings on a save dialog called dlgExport
With dlgExport
   .Filter = "Excel Files (*.xls)|*.xls|All Extensions (*.*)|*.*"
   .FilterIndex = 1
   .RestoreDirectory = True
   .Title = "Export"
   .AddExtension = True
   .FileName = String.Empty
End With

'This is what you would put in the export button's click event:
If dlgExport.ShowDialog = Windows.Forms.DialogResult.OK Then
'You probably want to add checks to make sure dlgExport.FileName is valid first
   reportDocument1.ExportToDisk(CrystalDecisions.Shared.ExportFormatType.Excel, dlgExport.FileName)
End If

GeneralRe: new export button to open save as dialog for crystal report Pin
hughesie7815-Jun-09 0:30
hughesie7815-Jun-09 0:30 
QuestionHow can I retieve localized folder names? [modified] (seemingly Vista related) Pin
Sonhospa11-Jun-09 11:38
Sonhospa11-Jun-09 11:38 
AnswerRe: How can I retieve localized folder names? Pin
Colin Angus Mackay11-Jun-09 12:15
Colin Angus Mackay11-Jun-09 12:15 
AnswerRe: How can I retieve localized folder names? Pin
Colin Angus Mackay11-Jun-09 12:19
Colin Angus Mackay11-Jun-09 12:19 
NewsProblem seems to be Vista related! Pin
Sonhospa11-Jun-09 21:44
Sonhospa11-Jun-09 21:44 
Questionloop trought combobox all item...from a web page Pin
sal2111-Jun-09 11:09
sal2111-Jun-09 11:09 
AnswerRe: loop trought combobox all item...from a web page Pin
Dave Kreskowiak12-Jun-09 3:31
mveDave Kreskowiak12-Jun-09 3:31 
QuestionARW Thumbnails with VB.Net Pin
Easy_Rider999911-Jun-09 9:40
Easy_Rider999911-Jun-09 9:40 
AnswerRe: ARW Thumbnails with VB.Net Pin
Dave Kreskowiak12-Jun-09 3:33
mveDave Kreskowiak12-Jun-09 3:33 
QuestionVB6 to .net upgrade issue [modified] Pin
No-e11-Jun-09 7:49
No-e11-Jun-09 7:49 
AnswerRe: VB6 to .net upgrade issue Pin
Dave Kreskowiak11-Jun-09 9:10
mveDave Kreskowiak11-Jun-09 9:10 
GeneralRe: VB6 to .net upgrade issue Pin
No-e11-Jun-09 10:50
No-e11-Jun-09 10:50 
QuestionFiltering the results of GetDirectories? Pin
Sonhospa11-Jun-09 7:32
Sonhospa11-Jun-09 7:32 
AnswerRe: Filtering the results of GetDirectories? Pin
Luc Pattyn11-Jun-09 9:00
sitebuilderLuc Pattyn11-Jun-09 9:00 
NewsRe: Filtering the results of GetDirectories? Pin
Sonhospa11-Jun-09 10:10
Sonhospa11-Jun-09 10:10 
QuestionVBA (Bar chart error: String too long) Pin
jainga1021311-Jun-09 6:57
jainga1021311-Jun-09 6:57 
AnswerRe: VBA (Bar chart error: String too long) Pin
Luc Pattyn11-Jun-09 7:36
sitebuilderLuc Pattyn11-Jun-09 7:36 

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.