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

Search:

Type: Posts; User: dskp

Page 1 of 6 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    1
    Views
    1,155

    error when using wmemcpy

    struct DeviceParam {

    UINT32 count;
    UINT32 selection;
    wchar_t *MyStrings[MAX_DEVICES];

    };
    _declspec(dllexport) int Device(DeviceParam *objnew)
    {
    wchar_t *temp[MAX_DEVICES];
  2. Replies
    4
    Views
    2,526

    Re: Making background blur when i open my app

    but is there a way in which i can do it without creating a semitransparent (layered) and mouse-transparent window because my requirement demands it.
  3. Replies
    4
    Views
    2,526

    Making background blur when i open my app

    i have to make the background (of desktop) blur when i open my app.how do i do this please help me out with hints or links..
  4. Replies
    0
    Views
    1,312

    C++ to C# Code Conversion problem

    Hi All,

    I am trying to convert the following C++ code to C#.

    pExportDir = (PIMAGE_EXPORT_DIRECTORY)GetPtrFromRVA(exportsStartRVA, pNTHeader, pImageBase);

    C# Syntax (Toggle Plain Text)

    ...
  5. How to Create PE Object from dll located in Physical Location

    Hi All,

    My requirement is to form the PE structure from the physical dll (say for example user32.dll). I have to form a PE(Potalble Executable) object from a dll, which is available in some...
  6. Re: problem accessing framework(2) dll in framework(4)

    In detail this is my Problem:

    I am trying to get the all the process modules from the Current process using "ProcessModuleCollection" Class. Please see the code i have used to do the above job....
  7. Re: problem accessing framework(2) dll in framework(4)

    Thanks a lot for the reply......

    a)can you just upgrade the 2.0 assembly to 4.0?
    Ans) unfortunately ,I am not suppose to upgrade the dll

    b) What sort of error message are you getting?
    Ans) I...
  8. problem accessing framework(2) dll in framework(4)

    i have a dll(C#) that is created in .NetFramework 2.0 but i am unable to access it in .NetFramework 4.0 (application) . do i have to make any settings in order to access the dll built in...
  9. Replies
    4
    Views
    1,138

    Re: how to get Dialog handle in a dll ?

    thanks a lot for the reply.

    [code]
    AFX_MANAGE_STATE(AfxGetStaticModuleState())
    CFDialog dlg;
    int responce = dlg.DoModal(); //it fails here and i am unable to launch dialog....
  10. Replies
    4
    Views
    1,138

    how to get Dialog handle in a dll ?

    I am working in a project where in a dialog is called from a cs project.
    This dialog is in dll (vc project).the dialog's handle is null, due to this i am unable to launch the dialog.




    ...
  11. Replies
    1
    Views
    636

    Shortcut key in vb

    How do i assign a shortcut key to button in VB6.

    &Print ---> for "P" i.e (Alt+p)

    how do i do this using code.

    thanks in advance.
  12. Thread: coversion

    by dskp
    Replies
    3
    Views
    909

    coversion

    my problem is to get number of decimals digits after the decimal in a number of type double.So i have written below code.but it displays the ERROR which is


    cannot convert parameter 1 from...
  13. Replies
    4
    Views
    1,413

    convert Bstr to char

    how do i convert Bstr to char ?
    please give me an example.
  14. Replies
    2
    Views
    628

    display date using format ?

    i want to display date in a text box which is in a flex grid



    Estval = bookval.EstimatedLife 'here value in Estval = 700
    Estval = Estval / 100 'here...
  15. Replies
    3
    Views
    1,635

    Re: getting data from excel sheet

    i tried the sample from this link

    http://support.microsoft.com/kb/q199691/

    i am working with visualstudio 2008. and using excel 2007.

    i have followed all the steps and i got 230 errors...
  16. Replies
    13
    Views
    3,650

    Re: convert CComBstr to char

    Thank's a lot for the replies.
  17. Replies
    2
    Views
    627

    displaying value with Comma

    hi,

    how do i display a value with a comma

    eg:

    double value = 100000;

    How do i save this number like 1,00,000.00 in order to save it to database.
  18. Replies
    3
    Views
    1,635

    getting data from excel sheet

    hi,

    i am newbie.

    my task is to
    1) Get the data from the excel sheet do some calculations and
    2) Again display the data again on a grid.


    can any please give me a simple sample so...
  19. Replies
    13
    Views
    3,650

    convert CComBstr to char

    how do i convert CComBstr to char;

    char c;
    CComBstr code;

    c = *code;

    is the above conversion correct or is there any other method ?

    please help.its urgent....
  20. Replies
    3
    Views
    737

    Re: Unable to launch chm file

    i pasted the chm file in other folder and tried giving the full path .but still i can't load the chm file.
  21. Replies
    3
    Views
    737

    Unable to launch chm file

    i am unable to launch the helpfile.



    void CMGRDlg::OnHelpButtonClick()
    {
    ::HtmlHelp( 0,_T("Manager.chm"),HH_DISPLAY_TOC, NULL);
    }
  22. Replies
    4
    Views
    1,110

    string concatination in loadlibrary()

    i have to add path + dll name in loadlibrary()
    [code]
    LPCSTR path = "CommonFilesPath" ;
    HINSTANCE hLib = LoadLibrary(path + "sample.dll") ;
    [\code]

    where CommonFilesPath = C:\PROGRAM...
  23. Replies
    1
    Views
    631

    problem while replacing _ with &

    while formatting the string by using String.Format() with message "john & berry's",
    it displays like "john _berry's".

    & is replace by _

    [code]...
  24. Replies
    2
    Views
    877

    Re: commontrol context menu

    please tell whether it is possible or not.
    Or please give me some ideas.
  25. Replies
    2
    Views
    877

    Re: commontrol context menu

    Can i remove the selected item's from context menu as show in the attachment (dlg.gif).

    plz help me.
Results 1 to 25 of 129
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured