Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by rguia

  1. rguia

    make textboxes and lables resize with form

    Change the dimension of your objects proportionaly, everytime the event Form_Resize() does occur. example: 1.- open a new project 2.- put three label controls randomly (Label1,Label2,Label3) 3.- put three texbox controls randomly (Text1,Text2,Text3,) 4.- copy this code 5.- run it and good...
  2. rguia

    How to get a Pointer to a variable in VB6

    Hi Guy As you know, in C Language if you have this int A; int * pA; You can assign to pA a pointer to Variable A doing this: pA = &A; How can i do that in VB6, Say that i have this public sub myfunc(byref A as integer) In this case "A" is a Pointer, and i want to...
  3. rguia

    Getting the list of Apps Running in Windows

    Hi Guys How can i Get the list of Apps already Running in Windows? Thanks rguia
  4. rguia

    Handle the Windows NT Environment from an VB App

    Hi there 1) Is there a control or something that might allows me to get the list of names for all applications already running in Windows? 2)Once i got this list of "App Name" how can i make active one of them (make it the Active Window) Thanks guys rguia
  5. rguia

    images in a listbox?

    Try with LISTVIEW & IMAGELIST this control come in Microsoft Common Controls 6.0 (MSCOMCTL.OCX) load this two controls in you form, then Configure LISTVIEW as: Properties\Image Lists\Icon Image Lists\Normal = ImageList1 and then use this code: ImageList1.ListImages.Add 1, "Pic1&quot...
  6. rguia

    Split a Fom in two resizable sections.

    Any ideas to implement a line to split a Form in two parts and be able to adjust the size of these two sections by draging the line up and down. by the way, i can use only the components that come with VB6.0 (no additional library). Interesting challenge isn't it? Rguia

Part and Inventory Search

Back
Top