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

Recent content by PoyPoy

  1. PoyPoy

    VB6 and Windows CE

    Dear All, If I were to write an application within VB6.0 SP5, could I deploy it on a PalmTop with a Windows CE Operating System? Would this work and if not, could I make it work? Many Thanks.
  2. PoyPoy

    How do you add a Timer to a Module or Class Module

    Many Thanks, I managed to get it working using the CodeFlow.dll rgds.
  3. PoyPoy

    How do you add a Timer to a Module or Class Module

    Thanks Guys, But unfortunately, I still can't get it to work. I have added the declare statement to the top of a class module, but get the following error message: “Compile Error: Constants, fixed-length strings, arrays, user-defined types and Declare statements not allowed as Public members...
  4. PoyPoy

    How do you add a Timer to a Module or Class Module

    Thanks dsi, Where do I place this sub, i am a bit confused, as I've never used API Calls. rgds.
  5. PoyPoy

    How do you add a Timer to a Module or Class Module

    Hi guys, I am trying to run a command that will execute every 30 minutes. To achieve this, I used a counter (Integer) and a Timer (Interval: 60’000). However, the problem lies, that I would like to run this function “form independent”, i.e. executing anywhere the user finds himself within the...
  6. PoyPoy

    odbc driver for mysql

    Have you got SQL Server installed on your development machine? If not, that is why you can't create a dsn for it.
  7. PoyPoy

    HOW TO PREVENT USER FROM CLICKING ON A TEXT BOX

    use the lost focus event: Private Sub txtText_LostFocus() txtText.Enabled = False End Sub

Part and Inventory Search

Back
Top