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 IamaSherpa 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. dgtart

    Internet Transfer Control Error 35764

    put a test b4 u do next loop .. if not inet.stillExecuting then ... /ola
  2. dgtart

    close (X)

    humm .. i thought he ment a taskbar icon like icq or winamp(NotifyIcon). And that he wanted a function like msn-exp or sql server maneger. .. What kind of icon du u meen? /ola
  3. dgtart

    close (X)

    Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer) Select Case UnloadMode Case vbFormControlMenu form.hide Cancel = 1 Case vbFormCode Call module.del_tray Case vbAppWindows Call module.del_tray Case vbAppTaskManager Call module.del_tray End Select End...
  4. dgtart

    NEWBIE QUESTION

    form1.text1.value = form2.text1.value /ola
  5. dgtart

    MDI Form

    Every time the forms paints u change it´s z-order .. =) formname.zOrder -1 .. and so on .. /ola
  6. dgtart

    GUID - Global unique indentifier

    Hi .. im setting up a FAT serverpark whit HIGH security (banking-carding) .. And im using Guid as session and im woundering if anyb has seen Hacking programs to "loop" though GUIDs and find one active?? I know there is ALOT of GUIDs but I need to be 100% sure someone can´t find one...
  7. dgtart

    Creating a File on FTP Server Via VB

    Check out the Inet component to connect to a ftp .. that should do the trick! .. /ola
  8. dgtart

    Mouse X & Y

    The easy way is to put a transparent label in the radius of the object .. then u can use mouseMove =) /ola
  9. dgtart

    Determining screen mode is current

    Don't forget to format it from twips to pixels height = screen.height/screen.twipsPerPixelY width = screen.width/screen.twipsPerPixelX /ola
  10. dgtart

    Determining screen mode is current

    Don't forget to format it from teips to pixels height = screen.height/screen.twipsPerPixelY width = screen.width/screen.twipsPerPixelX /ola
  11. dgtart

    application lost focus?

    What do i trigger on if the application loose and gain focus .. not just the main window i meen the whole app .. ?? ex: i want text i a textbox to dissapeare whe the app loose focus .. or whatever .. /ola
  12. dgtart

    Stop Multiple instances

    Dim savetitle If App.PrevInstance Then savetitle = App.Title App.Title = "... duplicate instance." form1.Caption = "... duplicate instance." AppActivate savetitle SendKeys "% R", True End End If put it in...
  13. dgtart

    DrawFocusRect API

    Hi im using the DrawFocusRect to create a ghost-Frame when im moving my windows(i have screenSuck and so on.) .. my problem is that drawFocusRect as its name, just draw rects and my Mainform(winampstyle with childs) is this form: using the CombineRgn and SetWindowRgn to create the...
  14. dgtart

    A full Table loaded into the RAM?!

    Does anybody knows if there is a way to force SQL-Server 2k to fully load a whole table into the RAM-memory of the Server? I have a session table i alwas want to be in the RAM. /ola

Part and Inventory Search

Back
Top