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: hyonos
  • Order by date
  1. hyonos

    API Declaration

    hi to all. in fox i can't declare all windows api instead in visual basic (for example) i can declare much more api. then, i have an idea but i don't know if is it possible. if i create a dll in vb or c++ fore declare api and call api ? in foxpro i can declare my dll and after call dll for...
  2. hyonos

    Calendar control like outlook

    I agree with Flutepir... if my user don't have office? i don't want create office dependent :) in this case, if i want free i must develop my own control :(
  3. hyonos

    Calendar control like outlook

    hi, i'm looking for create calendar control like outlook calendar. i must create month views and fill in calendar control my data. i have see outlook calendar and i'm looking for freeware similar object. can anyone help me?
  4. hyonos

    command window

    i can't open command window like foxpro ide?
  5. hyonos

    command window

    how i can create a command window inside my app ? i have find a command window form in foxite, but it don't work fine :( for example i can't do this x="ciccio" &&(press enter) wait window x && (press enter) with foxite command i get an error: variabl x not define now, how i can...
  6. hyonos

    BackColor property in Treeview control

    try this: DECLARE INTEGER SendMessage IN user32; INTEGER hWnd, INTEGER Msg,; INTEGER wParam, INTEGER lParam DECLARE INTEGER SetWindowLong IN user32.DLL ; INTEGER hWnd, INTEGER nIndex, INTEGER dwNewLong DECLARE INTEGER GetWindowLong IN user32.DLL ; INTEGER hWnd...
  7. hyonos

    LABEL FORM has no documented IN WINDOW

    I see that LABEL FORM has no documented IN WINDOW clause. LABEL FORM mylabel.lbx PREVIEW IN WINDOW PrintPreview (see faq184-2490 for PrintPreview) tnx to Stuart D.
  8. hyonos

    label preview

    solution found ! i want tnx Stuart D. Stuart write me: "I see that LABEL FORM has no documented IN WINDOW clause. But have you tried it anyway?" LABEL FORM (rp) PREVIEW IN WINDOW PrintPreview this code work fine :)
  9. hyonos

    Have a Top-Level preview label report with a Top-Level application

    LABEL FROM have no documented IN WINDOW clause see faq: faq184-2490 then: DEFINE CLASS printpreview as Form titlebar = 0 Showwindow = 2 &&Top level autocenter = .t. name = "PrintPreview" height = SYSMETRIC(2) && This will maximize the preview width = SYSMETRIC(1)&& This will...
  10. hyonos

    question

    right :)
  11. hyonos

    question

    have you try USED ? select mytable ? used('mytable') && this display .T. well, now you can use: myalias=alias() if used('myalias') wait window "is used" endif
  12. hyonos

    label preview

    for run normal report preview, i use this code: PUBLIC oPrint oPrint= CREATEOBJECT("printPreview") oPrint.SHOW() REPORT FORM (rp) PREVIEW WINDOW PrintPreview IN WINDOW PrintPreview IF VARTYPE(oPrint) = "O" oPrint.RELEASE() ENDIF DEFINE CLASS printpreview as Form...
  13. hyonos

    Keylog

    yes, fox8 i have try this solution suppose 1 form with 1 textbox in main prg i have write this code: PUBLIC oHandler oHandler=NEWOBJECT("myhandler") do FORM form1 BINDEVENT(Form1,"KeyPress",oHandler,"mykeypress")...
  14. hyonos

    win98 kernel error

    kernel error 017x:xxxxxx in all win98 machine i have try in 3 different computer :(
  15. hyonos

    Keylog

    i want include a keylog in my application but i don't want modify all form... how can i set _screen.keypree event ?
  16. hyonos

    win98 kernel error

    in win 98 is missing gdiplus.dll i have put it in \windows\system32 directory. but kernel error persist. i can work with my program for 1/2 minute, after i retrive kernel error
  17. hyonos

    win98 kernel error

    i have an applicatio written in vfp8 and sp1 all work fine on winxp, 2000 but in win98/me i receive a kernel error i have try to format and reinstall win98 and me but kernel error persist. anyone can help me? tnx
  18. hyonos

    Project hook: autobackup

    tnx
  19. hyonos

    Project hook: autobackup

    hi to all. i have crete vcx based on project hook. in the init i have this code for create autobackup file: LOCAL mybackup, mydirtobackup mybackup="c:\mybackup\software.rar" mydirtobackup="c:\myproject\" loshell = CREATEOBJECT("wscript.shell") WAIT WINDOW...
  20. hyonos

    Project Documentation

    tnx to ALL !!! :)

Part and Inventory Search

Back
Top