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

Search:

Type: Posts; User: michig54

Page 1 of 3 1 2 3

Search: Search took 0.05 seconds.

  1. Replies
    0
    Views
    3,066

    UserControl and SuspendLayout

    I have a user control and I want the SuspendLayout/ResumeLayout methods of my UserControl to be called in the designer code generation of the form or control that my UserControl is added to. Just...
  2. Thread: Bitmap Tiling

    by michig54
    Replies
    6
    Views
    2,237

    Re: Bitmap Tiling

    I am revisiting this issue. Bump to see if anyone may have an idea on what is going on here.
  3. Thread: Bitmap Tiling

    by michig54
    Replies
    6
    Views
    2,237

    Re: Bitmap Tiling

    does anybody know?
  4. Thread: Bitmap Tiling

    by michig54
    Replies
    6
    Views
    2,237

    Re: Bitmap Tiling

    I tried to simplify the function. Here I just try to grab a 12 x 12 pixel tile from the top left of the image. I still get the same issue. I don't quite see what you are talking about.


    ...
  5. Thread: Bitmap Tiling

    by michig54
    Replies
    6
    Views
    2,237

    Re: Bitmap Tiling

    I dont think that is what is happening. Even if i was duplicating pixels across tiles, each tile image would still go to edge,regardless of the next tile, which it doesnt seem like it is.
  6. Thread: Bitmap Tiling

    by michig54
    Replies
    6
    Views
    2,237

    Bitmap Tiling

    I am writing a function that takes in a bitmap and splits it into 1000 x 1000 pixel tiles. The problem that I am having is that at the bottom and right edge of each new tiled bitmap, the pixels fade...
  7. Thread: Xml

    by michig54
    Replies
    3
    Views
    1,196

    Xml

    I am reading some xml data from a NetworkStream. The problem is that I don't have any control over what comes over the stream, and what is being sent is multiple xml documents at once. For instance:...
  8. Replies
    6
    Views
    1,268

    Re: Problem Moving Cursor

    Well I booted up directly to windows using boot camp, instead of using VMWare. And that did the trick. The cursor moved fine after that. Thanks for your help
  9. Replies
    6
    Views
    1,268

    Re: Problem Moving Cursor

    I'd have to do some more testing, as I don't have it right in front of me, but I did come up with an idea of what might be causing this. I have a feeling I may be shunned for my next comment, but...
  10. Replies
    6
    Views
    1,268

    Re: Problem Moving Cursor

    Well, I came across something else different wierd. Seems as if when I click and hold down the mouse button, the system thinks the cursor has moved. But the screen doesn't show that it has moved....
  11. Replies
    6
    Views
    1,268

    Re: Problem Moving Cursor

    Yeah, I mean if I set a breakpoint, control stops and sends me there. Also I have the Debug.Print instructions that tell me that the cursor position is actually getting changed. But no cursor...
  12. Replies
    6
    Views
    1,268

    Problem Moving Cursor

    Hello,
    I know this is a very simple function. Everything i looked up gave me the same answer, but for some reason the cursor isn't moving. Here is the code that I am using:



    private...
  13. Replies
    1
    Views
    5,932

    python script as pre-build event

    hello,
    I created a python script that checks the revision number of a project and stores into a .cs file. This works fine when I run it from the command prompt. But when putting in it the pre-build...
  14. Replies
    1
    Views
    1,657

    Re: Save/Load ListView

    I was looking to do the same thing. I created a new property setting in the application settings. It saves it correctly when i close the form as it does other settings., but when i load it back up...
  15. Thread: Tab stops

    by michig54
    Replies
    2
    Views
    756

    Re: Tab stops

    nope, no group controls. It's a very simple layout, and it never tabs to another control after the last one no matter how many times i hit it.
  16. Thread: Tab stops

    by michig54
    Replies
    2
    Views
    756

    Tab stops

    This seems like a very simple problem but i can't figure out what is going on. I have several controls on a form, its a very simple layout. I have the tab index set in order from left to right/ up...
  17. Re: Which is preferable? Set() members or pass to Constructor?

    If your creating a class object and the all of the variables aren't ones that are optional and have to be used, i would put them all in the constructor. Otherwise, i would create overloaded...
  18. Replies
    1
    Views
    632

    textbox problem

    i have a textbox that is multiline and readonly, and text is entered into it programmatically using only the AppendText method. I want the textbox to scroll down to the bottom as text is appended. ...
  19. Replies
    16
    Views
    7,226

    Re: TextBox - Enter click - DING

    what "DING" are you reffering to
  20. Replies
    5
    Views
    866

    Re: printing from a text box

    ok, i kind of solved the problem. But not completely, it now prints the tabs out, but it doesnt quite print them out the sam way that they are shown in the text box. I did i change in the way that...
  21. Replies
    5
    Views
    866

    Re: printing from a text box

    I tried that, it still doesn't print out the tabs.
  22. Replies
    5
    Views
    866

    printing from a text box

    I have a NotePad like program in which i am printing from a textBox. Everything works fine, except when it goes to print a string that contains a tab "\t", it just ignores it and doesn't do...
  23. Replies
    11
    Views
    1,399

    Re: Threading problem

    Thanks guys, this helped a lot. I was able to figure out my problem. It has begun to be a bit tedious calling the invoke method. So ill have to look into the BackgroundWorker class
  24. Replies
    11
    Views
    1,399

    Re: Threading problem

    im still having problems if i do it like the example that trenches left. it won't wait for my process to be done before doing anything. For example say in my button1_Click event i wanted to do...
  25. Replies
    11
    Views
    1,399

    Re: Threading problem

    I gave this way a shot, and it works fine for what i need it to do about waiting for the thread to finish but, the controls on the window still can't be accessed.
Results 1 to 25 of 58
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured