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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: javierbalk
  • Order by date
  1. javierbalk

    Keys Help

    If you want to know the key that is pressed but just inside a form, it is easy: Set the KeyPreview property to True, and then in the Form_KeyPress event to have the parameter Keyascii with the code of the key that was pressed. If you need keys like cursor keys and function keys and all the non...
  2. javierbalk

    Send array of controls as arguments to Sub

    Hi: Change the declaration to: Sub mySub (txt as Variant) txt(1).Text = "Somenting..." txt(2).Text = "Somenting else..." etc End Sub ............. Javier www.visual-basic.com.ar
  3. javierbalk

    MsgBox resource

    Hi, I am writing a custom MsgBox and InputBox with a Form, now what I need is to retrieve the proper captions for the buttons Ok, Cancel, Retry, etc from the system in the proper language of the user. Any idea about how to locate that resource strings? Thanks in advance, Javier
  4. javierbalk

    It is for a genius

    For MichaelRed: I have read your comments again (with more time) and I understood now what you meant with your comments. Yes, you are right, if I make changes to the product and a customer want to upgrade to the new version, he has to re-compile his program(s). But I am working in a new...
  5. javierbalk

    It is for a genius

    I have been doing some research with the object browser. Forms is a member of Global. Global is a class of the library VB. So this code: Dim a Set a = VB.Global.Forms is the same that Dim a Set a = Forms Now, can I get a reference to the Global class of the...
  6. javierbalk

    It is for a genius

    I think we are talking about different things. What I am asking has nothing to do with publishing, documentation, registering and so. I know very well the Parent property, it gives a reference to the form where the UserControl is located. But I need all the forms, not only this one. I will be...
  7. javierbalk

    It is for a genius

    Hello: I did not undestand what you mean with "I think the more common approach is to have OCXs registered and use the regisrty version be checked. When the control is updated, the registry version value changes and changes are triggered from here." About your suggestion, there is...
  8. javierbalk

    It is for a genius

    Well, I see that what I said was not understood. I will explain it better now. Every VB program has a Forms collection, this collection is called Forms. For example, you can do something with one or all the forms with it. A sample code for changing the BackColor of all the forms (all the forms...
  9. javierbalk

    It is for a genius

    Hi, what I need is to get the Forms collection of the client application that uses my Usercontrol ActiveX (OCX). I mean, when a program uses my OCX, I want to get the reference to the Forms collection of that program from the UserControl. I developed an ActiveX that doesn't require code, but...
  10. javierbalk

    Greek support

    Yes, thanks.
  11. javierbalk

    Greek support

    Hello, I have an ActiveX control that I am selling and I have a customer from Greece that told me that he can't display greek text in a label (a label contained in my usercontrol). How can I add this support? Thanks in advance, Javier
  12. javierbalk

    Notify when form is created

    Thanks strongm, I will test the code, Javier
  13. javierbalk

    Notify when form is created

    Yes strongm, when you go to your development machine please send me the code please. If you want to send it by email my addess is javierbalk@hotmail.com. Thanks, Javier
  14. javierbalk

    Notify when form is created

    Hi all: I am making an ActiveX control and I need to be notified when a new form is created in the client application. Now I am subclassing the form where my ActiveX control is placed and I found that the WM_WINDOWPOSCHANGING message fires every time a new form appear, and then I look in the...
  15. javierbalk

    Notify when form is created

    Hi all: I am making an ActiveX control and I need to be notified when a new form is created in the client application. Now I am subclassing the form where my ActiveX control is placed and I found that the WM_WINDOWPOSCHANGING message fires every time a new form appear, and then I look in the...
  16. javierbalk

    with and without www prefix

    Hi, I have access to the server and olso to the people that manage the server, but they don't know how to make available the site without the www prefix, so I decided to make my own research in order to ask them to make the changes needed. I you could specify me what to to it will be helpfull...
  17. javierbalk

    with and without www prefix

    Hi all: I have a website hosted in a server that has IIS and I have the problem that the site can not be accessed without the www prefix. I want to change that in order to access the site with and without the www prefix, How can I do that? Thanks in advance, Javier
  18. javierbalk

    Ole drop over tray icon

    Hi all: Do you know haw to implement (if possible) to enable drag and drop over a system tray icon in VB? Thanks in advance, Javier
  19. javierbalk

    www prefix

    Hi, I have web a site hosted in a NT server. In this server all the sites must be accessed with the www prefix, and I don't know what to do for making the web sites available without the www. What do I have to do? Thanks in advance, Javier
  20. javierbalk

    b&w bmp from color bmp

    Hi, I need to convert a color bitmap to a black & white bitmap. How can i do that? Thanks, Javier

Part and Inventory Search

Back
Top