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

Search:

Type: Posts; User: vbcandies

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    760

    Re: removing components

    I found it!! An unused one was buring under a frame....had to drag all these frames around to look.

    Is there a better way---a search function to do the looking? This way seemed rather ridiculous
  2. Replies
    3
    Views
    760

    removing components

    I have a VB6 app that works, but I removed the common dialog controls from the form(s), along with the associated code. Now I want to eliminate it (OCX) totally from the project....

    Under...
  3. Replies
    3
    Views
    656

    Wince ce or phone

    I have simple app (about 30 hours of work) that runs on XT or win7 and would like to run it on a portable device...is there any simple way to convert it to run on win CE? what add-ons or converters...
  4. Replies
    14
    Views
    1,571

    Re: purchasing vb.net

    I do not want free---I want a full legit copy I can use for published work....is there nowhere you can buy visual basic???!!?
  5. Replies
    14
    Views
    1,571

    purchasing vb.net

    Hello:

    I am getting into VB.net...but need to purchase a copy of the software first....All of my searches turn up a million links to books, but nothing to the actual Vb.net software. I am hoping...
  6. Replies
    18
    Views
    3,077

    Re: dragr frames at run time

    Thanks, I got rid of the .visible= false, now much better!!
  7. Replies
    18
    Views
    3,077

    Re: dragr frames at run time

    So how to fix? I do not want the frames to go away forever. I just wanthem to move on the main form.
  8. Replies
    18
    Views
    3,077

    Re: dragr frames at run time

    Hello:

    the code is as given below. The frames are indexed frames.



    Private Sub FrameProto_MouseDown(Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)
    mX = X...
  9. Replies
    18
    Views
    3,077

    Re: dragr frames at run time

    I've been using the drag method described above (ignoring the fact that when you drag you see an outline)...but what I ran into (er, just noticed) is that if you drag one almost under the another it...
  10. Re: passing variable name rather than the variable

    Thanks Wof--your ideas are always top-shelf.

    As an additional twist, do you think it is possible to have an incoming string select a particular variable? Probably not, from what I've seen.

    for...
  11. Replies
    4
    Views
    652

    Re: Need RTB on TOP of frame

    I got it...after I pasted the RTB into a frame I forgot to revise my coordinate system (such as top) so that they referenced the frame instead of the form. Moving down 7000 on a large form is one...
  12. Replies
    4
    Views
    652

    Re: Need RTB on TOP of frame

    NO THE RTB IS PASTED INTO THE FRAME as I mentioned above...I did go back & double check---if you drag the frame, the RTB comes along for the ride.


    When enlarging them both under software...
  13. Replies
    4
    Views
    652

    Need RTB on TOP of frame

    I have an RTB (rich text box), rtbMyMessage pasted into a frame frmAllData...all is fine...except when I change the frame size in software (using .top & .height to increase the frame size on both the...
  14. Replies
    2
    Views
    1,134

    unloading an indexed frame

    Hello I have a main form with a protoype frame (index 0) with a few indexed buttons in it...I load in addition frames as needed:



    If intFrameCount <> 0 Then Load FrameProto(intFrameCount)...
  15. Replies
    10
    Views
    5,677

    Re: kill off top line in an RTB

    Thanks guys...these do the trick...I did notice that it kills off the coloring of my text (the text has various colors)...I will investigate that effect & what is being deleted out. RTB seems fairly...
  16. Replies
    10
    Views
    5,677

    kill off top line in an RTB

    Hello:

    I need to sroll an rtb upward (not talking about scroll bars) when the number of llines gets above a variable limit. I'm not really wanting to resize the RTB either...just want to delete...
  17. Re: passing variable name rather than the variable

    WizBang:

    WOW---that is quite an impressive demo...thanks for the great ideas...there seems to be so many obscure and hidden functions to work with...not sure how you run across all this...I guess....
  18. Re: passing variable name rather than the variable

    Wiz bang--thanks, but your suggestion is sort of the reverse of what I want===I need to later on UPDATE the variable value (being banana, apple, etc) based on previously slecting which of the...
  19. Replies
    18
    Views
    3,077

    Re: dragr frames at run time

    WOF:

    I took your thoughts and came up with the following (the frame is intialized to dragMode=Manual)
    This works very well....EXCEPT you have to move the frame a large distance before the form...
  20. Replies
    18
    Views
    3,077

    Re: dragr frames at run time

    If I turn on the Frame Drag mode property to automatic it does let me drag the frame around during run, but when I let go it goes back to where it was...so it seems like it almost does it!
  21. Replies
    18
    Views
    3,077

    dragr frames at run time

    Is it possible to allow frames on a main form to be dragged around (repositioned) on the main form by the user during the program operation (runtime?)

    What is the option needed to allow this...
  22. Re: passing variable name rather than the variable

    I really need to have a variable or some function hold the name of the variable (apple, banana, etc) so that I can do some processing on it much later in the program. There is some decision logic...
  23. passing variable name rather than the variable

    There is a simple way to refer to the variable name rather than then variable value, but I can't remember or locate how to do it. I forget the term, somthing like convert the name to a string?
    ...
  24. Replies
    6
    Views
    1,468

    Re: public object modules?

    I changed the type of sub I was having trouble with from public to private & POOF ...all the compiler errors went away & it works just fine!
  25. Replies
    0
    Views
    676

    extracting an index part II

    I am trying to create a function GetIndex that will:

    scan the controls (indexed controls) of a provided FRAME (using me.controls and the .container property) and on error resume to limit to...
Results 1 to 25 of 95
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured