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 strongm 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: *

  1. leyann

    ActiveX Control installation

    Kaembo, I'm sorry : I don't think my answer will be very useful : in fact I do use Windows 2000 as clients, but I assume the user has suficient rights to install my application. I would really appreciate to know if you ind a solution to that issue (I'm sure I'll need it some day)
  2. leyann

    Getting the event when a form has been moved (deplaced)

    Thank you very much (it works exactly like I wanted) !
  3. leyann

    Getting the event when a form has been moved (deplaced)

    Good Idea ! ... but I've ever tried, and using the mouse on the title bar to move the form does not make a MouseUp event. MouseUp event is only throwed when the user click in the content of the form.
  4. leyann

    Getting the event when a form has been moved (deplaced)

    RonVaught, Thanks a lot for your suggestion, but I'm not sure this would be the best solution : the timer should verify the coordinates very often to be really efficient (I mean to obtain the second form to stick to the first one) and I'm afraid it takes to many ressources... Why this kind of...
  5. leyann

    Getting the event when a form has been moved (deplaced)

    I want two forms to move together when the user move one. I assume, If I knew when the main form is moved, I could move automatically the other form. Do you have a better idea ?
  6. leyann

    Getting the event when a form has been moved (deplaced)

    Does anyone know how to retrieve the event corresponding to the form moving ? I tried Form_DragDrop event but it seems not to work.
  7. leyann

    INTERNET TRANSFERT (INET) OBJECT

    In fact, last releases of this component need RICHTX32.OCX installed on the client side. If somebody knows why...
  8. leyann

    INTERNET TRANSFERT (INET) OBJECT

    Hi, Does anyon eknows if there is a known incompatibility between the last releases of INET object and WIN98 ? I can't make it work with this OS... and I really don't know why ! If somebody had the same problem, just tell me. Thanks in advance, Leyann.
  9. leyann

    Inet.GetChunk()

    Hi, I use the following code to retrieve data sent after calling a jsp with Inet.Execute() Private Sub Inet1_StateChanged(ByVal State As Integer) Select Case State Case icResponseCompleted ' 12 s1 = "" S2 = "" Do...
  10. leyann

    IE navigation bar

    Hello, Does anyone know how I could hide the right navigation bar of IE in an activeX control ? I do something like that to retrieve the IE object and the set it in full screen mode. But there is always a rigth navigation bar... I can't manage to hide it ! Dim WithEvents SWObj As...
  11. leyann

    Inet.Execute

    Part of answer in : http://www.pgacon.com/bv13.htm
  12. leyann

    msxml.dll

    Hello, I think I've got the same problem with msxml.dll : When I add this file in my ActiveX package, the installation fails on 1 machine out of 2 (and the problem seems to be independant of Windows or IE version). When I exclude it of my package, the installation works well but ask me for the...
  13. leyann

    Inet.Execute

    I don't know how to get the return of the inet.Execute() method. I used know how to use inet.openURL method() (result = inet.openURL(theURL,0)), but I can't manage to do the same thing with the Execute method. Does anyone could help me ? thanks in advance, Yann.
  14. leyann

    ActiveX Control installation

    Thanks a lot for your answer. I found the solution : there was a problem with a dll I included in the cab file. When you deploy activeX, the problem is that IE don't show you any error message. Someone from Microsoft told me to use a special tool to see what happended during the dll...
  15. leyann

    ActiveX Control installation

    the real problem seems to be with the dll files included in the cab file. I don't know which one I must include... and which one not.
  16. leyann

    ActiveX Control installation

    Hi, I've made an activeX control. The problem is that when I try to access it entering the url in IE, sometimes it works fine and sometimes not. I've changed the security parameters of IE so that it accept unsigned activeX. The downloading is ok, IE prompts me for installation, but the activeX...
  17. leyann

    Calling functions between UserControl and forms

    I like this last answer. Thanks a lot. But unfortunaly, I don't know how to do it : the type "MyUserControlName" is not known in my form (I don't know why). So : private moParentControl as MyUserControlName is ineficient.
  18. leyann

    Calling functions between UserControl and forms

    What can be done is : Set myUserControl = CreateObject "myProjectName.UserControlName") and then call : Call myUserControl.myFunction(parameters) ... but I don't think it is actually a nice solution. Moreover, it seems to create a new instance of my usercontrol object, so I can't...
  19. leyann

    Changing titlebar color

    Hi, Thanks a lot for your usefull answer : it works fine... but it changes the color of all windows. Do you know if it's possible to change only the active window ?
  20. leyann

    Calling functions between UserControl and forms

    Thanks for your answer. Th problem is that I don't want to create a new exe project but an activeX control project... so dropping an instance of my usercontrol on my form seems to be impossible. Is there another possibility ?

Part and Inventory Search

Back
Top