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

Search:

Type: Posts; User: bytz

Page 1 of 61 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    4
    Views
    1,985

    Re: MFC Static link vs MFC Shared DLL Issues

    Wow, this thread died years ago, I'm surprised that anyone would post to it.
  2. Replies
    3
    Views
    1,197

    Re: Video Frame/Audio Sample Conversion

    Thanks for the suggestion, but the problem is not the play back, but in the representation of the relative start and duration times on a time line.
  3. Replies
    3
    Views
    1,197

    Video Frame/Audio Sample Conversion

    I'm having problems mapping NTSC frames to a time/drawing location. Currently the sofware is using the integer approximation 30000/1001 in it's calculations, this however will often cause the...
  4. Replies
    0
    Views
    557

    Colored cursors???

    So, I embed custom colored cursors (transfered from a prototype MFC app, working fine there) into my C# app. Load all of the embedded cursors into an array and switch the cursor depending on which...
  5. Replies
    5
    Views
    3,065

    I actually prefer to do this: bool isCtrl...

    I actually prefer to do this:



    bool isCtrl = (Control.ModifierKeys & Keys.Control) == Keys.Control;
    bool isShift = (Control.ModifierKeys & Keys.Shift) == Keys.Shift;


    This allows you to...
  6. Replies
    5
    Views
    3,065

    Thanks, I appreciate the reply. I just found...

    Thanks, I appreciate the reply.

    I just found that after searching through reams of code...
  7. Replies
    5
    Views
    3,065

    Keyboard state on MouseDown?

    I may just be missing a simple call; but how do I find out if the shift, ctrl, and or alt keys are pressed when the mouse is clicked? For example, I may want to click on several objects on the...
  8. Replies
    3
    Views
    3,789

    Just in case you're still having this problem or...

    Just in case you're still having this problem or if anyone else searches for a similar problem: For a Control that has the autoscroll property, it determines whether or not to show the scroll bars...
  9. Replies
    9
    Views
    2,103

    It may work fine for most things on XP but for...

    It may work fine for most things on XP but for some reason the toolbars don't display images. I tried using a imagelist with images placed in the wizard, and loading (.AddStrip) a stirp af images...
  10. Replies
    9
    Views
    2,103

    Actually, it was more of the last bit contained...

    Actually, it was more of the last bit contained in "off you go"... i.e. the only way I could figure to get this to work was to insert the .manifest file in the same location as the exe. Is there...
  11. Replies
    9
    Views
    2,103

    Hate to sound dense here, but do you know of an...

    Hate to sound dense here, but do you know of an example that shows how to do this? I tried creating a app.exe.manifest file and added it to the project but that didn't work. And, as usual, I'm...
  12. Replies
    9
    Views
    2,103

    EnableVisualStyles and Toolbars

    There seems to be a problem with enabling XP style (EnableVisualStyles) and toolbars, i.e. the buttons will not display images. Has anyone solved this/found a work around???
  13. Thread: C Sharp

    by bytz
    Replies
    2
    Views
    743

    Yes, as far as I know, the only vendor suppling...

    Yes, as far as I know, the only vendor suppling C# is microsoft. I would tend to buy it from them anyway as they own it and theirs is likely to be more up to date...
  14. Replies
    4
    Views
    1,286

    Yeap, I used the image list, loaded the bmp into...

    Yeap, I used the image list, loaded the bmp into is and did all the associations (at least as far as I can tell)... Works fine if the toolbar is not docked but otherwise the images only show up...
  15. CRectTracker in .Net???? Selection of graphic objects???

    What's the equivalent to CRectTracker in .Net??? The functionality I'm looking for is the ability to click on one or more drawn object(s), draw the selection handles and track mouse movement to...
  16. Replies
    4
    Views
    1,286

    I hate replying to my own posts (yeah, I could...

    I hate replying to my own posts (yeah, I could edit them, oh well). It seems when the toolbar has a "Dock" property of left or right, the images for the toolbar buttons don't show. Has anyone...
  17. Replies
    4
    Views
    1,286

    Weirdness, after several compiles, trying this...

    Weirdness, after several compiles, trying this and that with no effect, I go home and come back in the morning and the toolbar button is there... Now, I'm almost afraid to muck with it, it might...
  18. Replies
    1
    Views
    1,064

    Take a look at my reply to your other post

    Take a look at my reply to your other post
  19. I'm not sure how C# handles pointers, which is...

    I'm not sure how C# handles pointers, which is what you'd need to use for the return for GetProcAddress. This appears to be a workable way to dynamically load a function from a DLL:


    public...
  20. Replies
    7
    Views
    1,134

    You should be able to use split or indexof with...

    You should be able to use split or indexof with the '<' or the space.
  21. Replies
    7
    Views
    1,134

    You might look at the Split method, as long as...

    You might look at the Split method, as long as the substring you're looking for ends with a space... IndexOf would also work to find the first deliminator/space...
  22. Replies
    4
    Views
    1,286

    Vertical Toolbar images

    I'm creating a vertical toolbar with 1 or more buttons with images for each. In design, the buttons (actually the 1 button for now) show up fine, but when the app is run, the toolbar and button show...
  23. Replies
    97
    Views
    25,190

    Several things: [CODE] void...

    Several things:

    [CODE]
    void CEditorDoc::SetSquareColor(int i, int j, COLORREF color)
    {
    ASSERT( i >= 0 && i <= GetGridY() && j >= 0 && j <= GetGridX() );
    m_clrGrid.At(i, j) = color;...
  24. Replies
    5
    Views
    870

    I have no clue what WTA is, sorry. On reading...

    I have no clue what WTA is, sorry. On reading and writing records, either do it through XML ('cuz you should be easily able to add fields etc...) or you could read and write the records as a chunk,...
  25. Replies
    97
    Views
    25,190

    If the clip region is NULL, what's it doing being...

    If the clip region is NULL, what's it doing being invalidated!?!?! :D

    Not to worry, just want to make sure that good ideas (well maybe not so good ;) ) weren't lost in the cross fire.

    Peace :D
Results 1 to 25 of 1511
Page 1 of 61 1 2 3 4





Click Here to Expand Forum to Full Width

Featured