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

Search:

Type: Posts; User: motobizio

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Re: ACCESS 2003 can't run as exclusive

    After 1 day of tests, I solved it. I created a new ACCESS 2003 database in which I imported all the material from old DB. And now all works well, finally.

    Thank you VictorN for your help.

    Best...
  2. Re: ACCESS 2003 can't run as exclusive

    I don't have any .ldb file before to open the .mdb.
    This is really my issue.
    This problem may be related to the .mdb password?
  3. Re: ACCESS 2003 can't run as exclusive

    Hello

    I followed the guide, but I have noticed nothing special.
    I also opened .ldb file with a notepad, and in there i found that only one user (I) is using the DB.
    This drive me crazy!!!! :(
    ...
  4. Re: ACCESS 2003 can't run as exclusive

    Hello

    There is any .ldb file in .mdb directory. It is be possible that this file is created in different directory?

    Thank you
  5. [RESOLVED] ACCESS 2003 can't run as exclusive

    Hello to all

    I have an ACCESS 2000 mdb file with some code inside.
    In the old computer, where ACCESS 2000 was installed, there wasn't any problem to open it in exclusive mode.
    Now I am trying to...
  6. Replies
    3
    Views
    992

    Re: Show user version of MDB file ?

    Thank you VictorN.

    Just a little issue: by proceeding as you suggested, if the user goes with pointer above mdb file, the revision number doesn't appear in tooltip.
    There is any way to obtain it?...
  7. Replies
    3
    Views
    992

    Show user version of MDB file ?

    Hello to everyone.

    I have a .mdb access database and I would like to insert an user version of DB (like 1.0 or 1.2, etc) in it. I also would like that this version would be visible when an user...
  8. Replies
    5
    Views
    2,356

    Re: No Move Dialog

    You are right. I forgot to say that, in WM_INITDIALOG, I disabled SYSMENU.

    Thank you !
  9. Replies
    5
    Views
    2,356

    Re: No Move Dialog

    Ok, ok

    Thanks to all of you for your precious help.

    I solved the situation by the following way:



    int CALLBACK DlgProc(......)
  10. Replies
    5
    Views
    2,356

    [RESOLVED] No Move Dialog

    Hello to all
    I am trying to make a No-Move dialog.
    This is my code:


    hWndDlg= CreateDialog(hInstance, MAKEINTRESOURCE(IDD_CREAREQ), hWnd, (DLGPROC) DlgCreaReqProc) ;
    ShowWindow(hWndDlg,...
  11. Replies
    2
    Views
    659

    Re: Little issue with paths

    Thank you very much!
    This solved my issue!!

    Thank you again!
  12. Replies
    2
    Views
    659

    [RESOLVED] Little issue with paths

    Hello to all

    I have a little issue with paths.

    In my C WinAPI program, I would like to know if a path exists, and also if its root exists, and so on.
    I'll make an example:

    my_path =...
  13. Replies
    1
    Views
    909

    Which programming language could I use?

    Hello to all.
    I don't know db very well, but i have a little question.
    I now have 2 mdb files: one with an archive of tables and reports, and another which contains some masks and a lot of visual...
  14. Replies
    2
    Views
    1,155

    Re: find a string in a memory mapped txt

    Thank you for your answer!
    This function results very useful!
    I will try to use it!

    Thank you again
  15. Replies
    2
    Views
    1,155

    find a string in a memory mapped txt

    Hi to all

    I have a txt file, which contains many strings like the followings:
    KEY1 STRING1
    KEY2 STRING2
    ......

    I have to search for the KEY* value and I have to copy the...
  16. Re: Multiple Radio-Buttons selection

    It works! Changing the type to checkbox I can select multiple choice!

    Thank you olivthill2 for your help!
  17. [RESOLVED] Multiple Radio-Buttons selection

    Hello to all

    I have a dialog containing 3 radio-buttons.
    It will be possible to allow a multi-selection on those buttons?
    I would like that user could select only one button or plus buttons at...
  18. Replies
    2
    Views
    7,723

    Re: wcsncpy_s function question

    Thank you very much!
  19. Replies
    2
    Views
    7,723

    [RESOLVED] wcsncpy_s function question

    Hello to everyone.

    I have a simple, little question.
    I am writing the following code:



    wchar_t wValore[20] ;
    wchar_t Descriz[] = TEXT("ciao") ;
    wcsncpy_s(wValore, ARRAYSIZE(wValore),...
  20. Replies
    1
    Views
    1,663

    Define wchar_t in VC 6

    Hello to all

    I would like to define the wchar_t data type in a Visual Studio 6 project (C language).
    Does anybody know how I could do this?

    Thank you
  21. Re: How to display UTF8 coded characters in a Listbox

    olivthill2, I agree with you.

    I also have done a version of my code with the UNICODE conversion, but I was curious... :D

    Thank you for your reply!!
  22. Re: How to display UTF8 coded characters in a Listbox

    Codeplug thank you for your quick answer!
    I know that is possible to convert a UTF8 string in a WCHAR string, and display it in a listbox. But, I would like to display an UTF8 string directly,...
  23. [RESOLVED] How to display UTF8 coded characters in a Listbox

    Hello to all

    Is possible to display a char string, formatted in UTF-8 code, in a listbox?
    Here is my code:


    char destination[] = "/*string UTF-8 coded*/";
    SendMessage (hWnd, LB_ADDSTRING, 0,...
  24. Replies
    6
    Views
    2,728

    Re: load wordpad icons into an imagelist

    you are wellcome!! :-D
  25. Re: How to create a Window and disable maximize/resize?

    Hello!

    You can operate by 2 ways:

    1. Disable voices in sysmenu:


    // get the styles and properties of your window
    DWORD dwStyle = GetWindowLong(hWnd, GWL_STYLE);
    dwStyle &=...
Results 1 to 25 of 38
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured