CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: mdekalle

Search: Search took 0.03 seconds.

  1. Replies
    0
    Views
    1,139

    DirectPlay in Windows CE and CE .NET

    Hi !

    I will port a Windows 98 Program to Windows CE. A main part of the program are Network Classes based on DirectPlay. I found no reference where i can see the Components of DirectX used with...
  2. Replies
    1
    Views
    643

    Try DISTINCTROW instead of DISTINCT it is a...

    Try DISTINCTROW instead of DISTINCT it is a little differences indialects if you use Microsoft Databases.
  3. Replies
    4
    Views
    992

    Your .dll have other dependencys. This opines...

    Your .dll have other dependencys. This opines that your .dll tries to load other .dll´s wich are required. With the microsoft Visual Studio comes a tool , named DEPENDS. With this tool you can see...
  4. Replies
    1
    Views
    1,045

    I use DoCmd.TransferSpreadsheet to Export a...

    I use DoCmd.TransferSpreadsheet to Export a Table. Then I optimize the Spreadsheet with

    Set xlsObj = CreateObject("Excel.Application")
    Set xlsObj = GetObject(strFilename,...
  5. Thread: table in vba

    by mdekalle
    Replies
    1
    Views
    610

    Try a SQL-Create Table Statement. Execute with...

    Try a SQL-Create Table Statement. Execute with ADO.Open ...
  6. Replies
    1
    Views
    731

    I hope i understand this right, you want to...

    I hope i understand this right, you want to display Data in a ComboBox ?

    If so,

    1. Properties of the ComboBos Data Tab
    2. in ROWSOURCE you can do any SQL Statement, or Table
    3. BOUNDCOLUMN...
  7. Replies
    1
    Views
    731

    Hi ! All ways are good. You have to look up...

    Hi !

    All ways are good. You have to look up what you want to do.

    If you have linked Tables and want to get the Recordcount, you will have problems with 2, with 1 and 3 you will get it.

    If...
  8. Replies
    4
    Views
    6,322

    An other way , if you like, is to capture the...

    An other way , if you like, is to capture the camera stream witch "Direct Show" from Microsoft. This is in the DirectX SDK. In Version 8.1 it is not implemented for VB, but you can make a C++ .dll...
  9. Replies
    1
    Views
    616

    In the Form_Load() Method of the Report , try...

    In the Form_Load() Method of the Report , try DoCmd.MoveSize with this you should be able to move the current window and change it´s size.
  10. Thread: ' Problem

    by mdekalle
    Replies
    7
    Views
    7,462

    I try it and this work : Set rsC =...

    I try it and this work :

    Set rsC = CurrentProject.Connection

    strBu = "Hero's"
    strSQL = "INSERT INTO ins VALUES(2,""" & strBu & """);"

    Debug.Print strSQL
    rsA.Open...
  11. Thread: ' Problem

    by mdekalle
    Replies
    7
    Views
    7,462

    Where to you use it in your SQL statement ? ...

    Where to you use it in your SQL statement ?

    When you use it after LIKE or = you can do this :

    ... LIKE "Hero's" ... this will work.

    If Hero's is a table name you better rename it.

    I hope...
  12. Replies
    3
    Views
    1,110

    I think pavankiran is right with his opinion, i...

    I think pavankiran is right with his opinion, i know this error as well. To figure out witch dependencys your .DLL also have, you can use a tool named DEPENDENCY WALKER . This Tool shows you all .dll...
  13. Replies
    18
    Views
    2,033

    should work ....

    I used Callbacks also , but I GAVE the other program a Pointer to my own Callback function in VB. So that the other Program can call my function. Thats the way I know that it will work.

    And I know...
  14. Replies
    4
    Views
    1,084

    wrapper class ?

    At first : thanks to all replys !

    A wrapper class seems to be a possible solution. But how can I implement this without declaring every function in the VB DLL ?

    Thank you
  15. Replies
    4
    Views
    1,084

    c++ objects in VB ?

    Hi !

    I wrote a .dll in C++ and sucessfully implement the .dll in VB. But i´m tired of declare all the functions again in VB.

    Is it possible to access a C++ Class thru a .dll directly, like a...
Results 1 to 15 of 15





Click Here to Expand Forum to Full Width

Featured