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

Search:

Type: Posts; User: seshagiriRao

Page 1 of 3 1 2 3

Search: Search took 0.06 seconds.

  1. Simple - Is MBCS supported in DOT NET

    hi,

    I just want to confirm the following :
    1. MBCS is not supported in DOT NET.
    2. UTF-8 is the default encoding

    Is this correct ?

    Also what are the good ways to convert MBCS strings...
  2. Replies
    3
    Views
    1,565

    Efficiency of using struct Vs class

    hi,

    The MSDN documentation says that in general when the size is less than 16 bytes structs are more efficient than classes. One would also keep in mind that structs are value type and classes...
  3. Replies
    2
    Views
    891

    ADODC controls

    hi,

    I am using an ADODC control in a VB form. Some edit boxes on the form are linked to the control.

    If I set the connection string for the ADODC control during design time, every thing works...
  4. Replies
    1
    Views
    431

    VBA like capability for applications

    hi,

    I would like to build VBA (Microsoft Office - Visual Basic for Applications) like capability for my application. Can any one give some pointers on how to proceed.

    My current application...
  5. Replies
    1
    Views
    720

    VBA like capability for application

    hi,

    I would like to build VBA (Microsoft Office - Visual Basic for Applications) like capability for my application. Can any one give some pointers on how to proceed.

    My current application...
  6. Re: Change resource dll (language) at runtime

    Well, its the same procedure I followed. It works only the first the application is run.

    Once the application is up and running using LoadLibrary to load another language dll does not seem to be...
  7. Change resource dll (language) at runtime

    hi,

    In MFC - VC++ 6.0, is it possible to change the language of an application dynamically?

    I have an application which uses a resource only dll. There is one resource dll for each of the...
  8. Replies
    4
    Views
    817

    to be more precise: The MM_TEXT mapping mode...

    to be more precise:

    The MM_TEXT mapping mode maps each logical unit into one device pixel. That is if you specify text height as 10, then it would mean 10 pixels.

    Pixel size differs from...
  9. Replies
    0
    Views
    642

    Transparent window

    hi,

    The WS_EX_TRANSPARENT does not seem to be doing anything. In the Create method, I added this extended style to make a control transparent.

    I also tried setting using the SetWindowLong...
  10. Replies
    1
    Views
    703

    transparent tree control

    hi,

    Can any one give an idea on how to create a transparent CTreeCtrl ?
    I have tried using the WS_EX_TRANSPARENT window style but of no use.

    thanks in advance

    Seshagiri
  11. Replies
    4
    Views
    817

    no

    no
  12. Replies
    4
    Views
    817

    When the text size is 14, you can set it to mean...

    When the text size is 14, you can set it to mean 14 pixels or 14 units.

    In the second case each unit could be 0.1mm or 1/72 inch or something like that.

    Pixel size differs from device to...
  13. Replies
    0
    Views
    457

    Edit control - MS Powerpoint style

    hi,

    can anyone give pointers on how to create MS Powerpoint style text controls ?

    thanks in advance

    Seshagiri
  14. Thread: volume

    by seshagiriRao
    Replies
    1
    Views
    580

    volume

    hi,

    are there any win32 or MFC functions to know whether the system sound volume is set to MUTE ?

    Seshagiri
  15. Replies
    2
    Views
    625

    list of files in a directory

    probably this is a simple question...

    Given a directory path, for example "c:\temp", how to obtain the list of all files and sub-directories inside it. I am not using CFileDialog.

    Could some...
  16. Replies
    5
    Views
    871

    thanks...but I was looking for tab controls of my...

    thanks...but I was looking for tab controls of my own shape.
  17. Replies
    5
    Views
    871

    CPropertySheet

    hi,

    Is it possible to remove the tab controls of a property sheet. I want instead to place two arrow buttons to navigate between the pages.

    Can any one give some pointers on how to do this.
    ...
  18. Replies
    0
    Views
    485

    Office XP style task pane

    hi,

    Can any one give me pointers on how to create Office XP style task panes...like the ones seen in WORD/EXCEL XP.

    thanks in advance

    Seshagiri
  19. A list box/ grid like the windows character map

    hi,

    I want to create a list box or grid similar to the windows character map - want to show a list of symbols in a hortizontall scroll.

    to see the windows character map :
    ...
  20. Replies
    1
    Views
    525

    auto size dialog

    hi,

    Depending on some options selected I want to hide/ show controls placed at the bottom of a dialog. And also resize the dialog accordingly.

    Can any one show me how to do this...or point to...
  21. Replies
    7
    Views
    918

    Re: Re: Re: strings general question

    hi,

    thanks a lot and its clear now.

    Just one more question. Where does the memory for string - literals come from ? stack or heap ?

    Seshagiri
  22. Replies
    7
    Views
    918

    strings general question

    hi,

    Can someone explain why the following code gives an access violation error.

    char * subStr = "";
    char * origStr = "AAAAAAAAAAA";
    memcpy(subStr, origStr, 5);//CRASHES HERE

    thanks in...
  23. Replies
    2
    Views
    582

    c++ arrays general question

    hi,

    Usually the first element of an array is considered to be pointer to the memory of the array. Is this correct always ?

    thanks

    Seshagiri
  24. Thread: arrays

    by seshagiriRao
    Replies
    8
    Views
    874

    arrays

    hi,

    Usually the first element of an array is considered to be pointer to the memory of the array. Is this correct always ?

    thanks

    Seshagiri
  25. Replies
    1
    Views
    594

    VC++ macro

    hi,

    As soon as I open a workspace I want to run a batch file placed in a directory above the workspace. Can any one tell me how to do this.

    thanks in advance.

    Seshagiri
Results 1 to 25 of 55
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured