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 dencom 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: and0b
  • Content: Threads
  • Order by date
  1. and0b

    frame on the form

    I'm trying to move frame with option buttons on it during runtime but only bottom line of the frame is moving. I'm using properties me.frame.top=1440 and me.frame.left=770. What is wrong? Andrew
  2. and0b

    label location

    I have a label on the form for which I'm setting location" Me.lbl_lname.Top = 1500 Me.lbl_lname.left = 2000 now I'm saving this code, running the form and checking how does loock. Next in the code I'm changing position to: Me.lbl_lname.Top = 750 Me.lbl_lname.left = 1000 saving...
  3. and0b

    width of the form

    I was asking about before but I still don't know why I have a problem with width of the form. At design time I created form with width=5" and at run time I want to change its size to 10". Me.width=14400 sometimes is working sometimes don't. Is there other way to change width of the form which...
  4. and0b

    form, texboxes and code

    Can someone please take a look at this piece of code? it is driving me crazy! All I want to have is three text boxes moving up as user is typing info in these textboxes, when cursor/active box stays in the middle of the form. For some reason it does not work as I want to. Here it is: Private...
  5. and0b

    KeyPress in run time

    How to use KeyPress methode in run time. I have a form on which I'm creating textboxes in run time. When user enters data, he is using ENTER key to jump to the next textbox. How to assing KeyPress method to the just created tsxtbox so it will working with ENTER key (13)? Thnak you for any help...
  6. and0b

    property of textboxes

    I need advice on changing few textboxes properties at once. I have 10 textboxes: textbox1, textbox2,..... textbox10. How can I change width of textbox2, textbox4, textbox5, textbox7 and texbox9 at once? Can I somehow replace # with variable in MyForm.textbox3.width=150 Thank you!
  7. and0b

    form width

    I'm creating for at run time: Dim frm As Form Set frm = CreateForm frm.NavigationButtons = False frm.Width = 500 why I can remove navigation buttons but not size??? Can someone help me with that?
  8. and0b

    text box on the form

    How to add a textbox on the form from code, during run time?
  9. and0b

    continuus search

    Hi! I need some help with small search function. I have a from on which I want to have a textbox in which user will type characters of last name of the personal record in the table. How to make this search so it will show in listbox below only records filtered by typed characters? For ex. when...
  10. and0b

    Simle question about texbox

    On a form I have many textboxes. How to locked them all at once?? Thank you for any help!
  11. and0b

    form debug

    Hi! I'm new in MsAccess. Firend asked me to fix him some MsAcces application - add small code to the form. I added button to the form, wrote a code and now I trying to test it but I cannot run this form! I tried to debug it, by using F8 - step into, but it does not work. When I try to use run...
  12. and0b

    open window on other network computer

    Heloo! VFP 6.0 - from VFP appilcation I need to open vfp window on other network computer(both running winXP). Can somone help me with that problem? Andrew
  13. and0b

    Report Preview

    Hi! I need some help with report command. When I was runing it one time only, it wsa ok, it was in preview mode until I closed it, but I want to run it twise, for different range of records and it does not stop any more in preview mode. here is how I'm running it: REPORT FORM rep.frx preview...
  14. and0b

    Database size

    Hello! I'm beginner in SqlBase. Can somone help me shrink database in SqlBase 7.0.1. We have reach file size of 2Gb. Andrew
  15. and0b

    jagged array

    Hi! I have small problem with testing elements of array. Some of array elements are empty, some contains other arrays. Test if aMyArray(3,101)= empty works fine for empty elements but it is triggering runtime "Error #13: Type mismatch" for other elements. How can I determine which elements are...
  16. and0b

    Olecontrol parameters

    Hi! I need some help again. I have small ocx in vb and I want to use it in vfp6.0. It is working in vb this way: FK524ID1.SetIPAddress lpszIPAddress, CLng(txtPortNo.Text) where lpszIPAddress = "192.168.1.201" and txtPortNo.Text="5005" In VFP, when I dclick on "SetIpAddress" method in the...
  17. and0b

    Help with ocx

    I'm beginer in VFP programming. I did register(regsrv32.exe) ocx file I received with my new device. I placed icon(as activeX control) on my new form and now I'm trying to use it(communicate with device). I typed: Thisform.fk524.SetIPAddress='168.192.1.11' and when I run it it is giving error...

Part and Inventory Search

Back
Top