Click here to Skip to main content
15,917,731 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: copy region of picture box... Pin
Christian Graus19-Sep-05 11:44
protectorChristian Graus19-Sep-05 11:44 
GeneralRe: copy region of picture box... Pin
schweet_nectur21-Sep-05 12:23
schweet_nectur21-Sep-05 12:23 
QuestionWhats wrong with this....... Pin
daviiie19-Sep-05 8:39
daviiie19-Sep-05 8:39 
AnswerRe: Whats wrong with this....... Pin
KaptinKrunch19-Sep-05 8:42
KaptinKrunch19-Sep-05 8:42 
AnswerRe: Whats wrong with this....... Pin
Dave Kreskowiak19-Sep-05 9:17
mveDave Kreskowiak19-Sep-05 9:17 
AnswerRe: Whats wrong with this....... Pin
Christian Graus19-Sep-05 11:47
protectorChristian Graus19-Sep-05 11:47 
AnswerRe: Whats wrong with this....... Pin
Gopi.V19-Sep-05 22:23
Gopi.V19-Sep-05 22:23 
QuestionCommon Dialogs and Office 2003 Pin
john john mackey19-Sep-05 7:35
john john mackey19-Sep-05 7:35 
Hi. My problem is this. I created a MS Access application in Access 2000 under Windows 2000, Service Pack 4.

My Access application has a form that asks the user to provide a file's pathname and I provide the Open/Save-As common dialog using MS Common Dialog Control, version 6.0. I do this using underlying VBA code and the properties of the Commond Dialog (OLE Class=CommonDialog, Class=MSComDlg.CommonDialog.1)
    'call the Open file dialog and retrieve pathname selected<br />
    'the Open/SaveAs common dialog appears as an ActiveX Control on the form (design view)<br />
<br />
    With ActiveXCtl_OpenSaveAs<br />
        .CancelError = True<br />
        .Filter = "My data files (*.csv;*.txt)|*.csv;*.txt|All Files (*.*)|*.*"<br />
        .DefaultExt = ".csv"<br />
        .DialogTitle = "Select data file for Import"<br />
        .FilterIndex = 1<br />
        .Flags = cdlOFNHideReadOnly<br />
'        .Filename = strInitialFilename<br />
        .ShowOpen<br />
'<br />
        If .Filename <> "" Then<br />
            editInputPathname.Value = .Filename<br />
        End If<br />
'<br />
    End With<br />


Under Office 2003 on a Windows XP machine, I get the error
Microsoft Office Access
Object doesn't support this property or method

then related error messages...
You don't have the license required to use this Active X control...

I have tried putting the COMDLG32.OCX file in places it should find, but that doesn't help.

What must I do to get my code to work on latest Access edition?

Thanks.
Johnny
QuestionProcedure or function UpdateAllRecords has too many arguments specified. Pin
mcgann19-Sep-05 6:10
mcgann19-Sep-05 6:10 
AnswerRe: Procedure or function UpdateAllRecords has too many arguments specified. Pin
KaptinKrunch19-Sep-05 7:35
KaptinKrunch19-Sep-05 7:35 
Questionsomebody help me! Pin
Gulfraz Khan19-Sep-05 5:56
Gulfraz Khan19-Sep-05 5:56 
AnswerRe: somebody help me! Pin
Dave Kreskowiak19-Sep-05 7:56
mveDave Kreskowiak19-Sep-05 7:56 
GeneralRe: somebody help me! Pin
Gulfraz Khan20-Sep-05 2:45
Gulfraz Khan20-Sep-05 2:45 
GeneralRe: somebody help me! Pin
Dave Kreskowiak20-Sep-05 11:24
mveDave Kreskowiak20-Sep-05 11:24 
QuestionCarriage Return Pin
directred19-Sep-05 3:20
directred19-Sep-05 3:20 
AnswerRe: Carriage Return Pin
KaptinKrunch19-Sep-05 3:37
KaptinKrunch19-Sep-05 3:37 
AnswerRe: Carriage Return Pin
Dave Kreskowiak19-Sep-05 5:34
mveDave Kreskowiak19-Sep-05 5:34 
QuestionApp.config File Pin
risepop19-Sep-05 1:55
risepop19-Sep-05 1:55 
AnswerRe: App.config File Pin
Dave Kreskowiak19-Sep-05 5:32
mveDave Kreskowiak19-Sep-05 5:32 
QuestionComboBox - TextBox Pin
Zealot34518-Sep-05 23:37
Zealot34518-Sep-05 23:37 
AnswerRe: ComboBox - TextBox Pin
Briga18-Sep-05 23:56
Briga18-Sep-05 23:56 
GeneralRe: ComboBox - TextBox Pin
Zealot34519-Sep-05 22:27
Zealot34519-Sep-05 22:27 
Questionhow to export a dataset into excel files using vb.net? Pin
kcdeleon18-Sep-05 23:04
kcdeleon18-Sep-05 23:04 
AnswerRe: how to export a dataset into excel files using vb.net? Pin
seee sharp19-Sep-05 0:11
seee sharp19-Sep-05 0:11 
GeneralRe: how to export a dataset into excel files using vb.net? Pin
kcdeleon19-Sep-05 13:58
kcdeleon19-Sep-05 13:58 

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.