Search:

Type: Posts; User: santosm; Keyword(s):

Page 1 of 20 1 2 3 4

Search: Search took 0.03 seconds.

  1. Thread: Select Case

    by santosm
    Replies
    13
    Views
    731

    Hi, strName already has a value applied to it...

    Hi,
    strName already has a value applied to it from the form, in this case a company name.

    Thanks,
    Mark
  2. Thread: Select Case

    by santosm
    Replies
    13
    Views
    731

    Thanks!

    Thanks!
  3. Thread: Select Case

    by santosm
    Replies
    13
    Views
    731

    Hi Hans, Thanks! Mark

    Hi Hans,
    Thanks!

    Mark
  4. Thread: Select Case

    by santosm
    Replies
    13
    Views
    731

    Hi Wendell, VBA, but now I see that Hans has...

    Hi Wendell,
    VBA, but now I see that Hans has said I cannot use wildcards in a select method.

    Thanks,
    Mark
  5. Thread: Select Case

    by santosm
    Replies
    13
    Views
    731

    Hi Andrew and Pat, What I am looking for is to...

    Hi Andrew and Pat,
    What I am looking for is to filter based on a name using wildcards. The name might be something like Acme North, Acme South, Acme West, etc. I tried using:

    case "*Acme*" but it...
  6. Thread: Select Case

    by santosm
    Replies
    13
    Views
    731

    Hi All, I have a "Select Case" method in my DB...

    Hi All,
    I have a "Select Case" method in my DB and I want to look for anything containing a name. I am trying to do this:

    Select Case strName
    Case "*anyname*"
    me.command123.visible = true
    Case...
  7. Thread: SafeItem usage

    by santosm
    Replies
    1
    Views
    195

    I am using redemption mail to send emails from...

    I am using redemption mail to send emails from Access. I have the basic functionality working fine but now would like to send the mails from a common group mailbox. Does anyone have any idea how to...
  8. Replies
    2
    Views
    234

    Hi Hans, Thanks again! I couldn't get the...

    Hi Hans,
    Thanks again!

    I couldn't get the "nomatch" thing to work but the rest is working. I will play around with it later...

    Thanks,
    Mark


    You can use code like this. I've assumed that...
  9. Replies
    2
    Views
    234

    Hi All, I have a subform that has a number of...

    Hi All,
    I have a subform that has a number of records on it. I want to move to a specific record based on an input I have already collected. What is the command syntax I would use to set the focus...
  10. Replies
    1
    Views
    461

    I was able to do this a while back but can't...

    I was able to do this a while back but can't remember how to now!

    I want to call another forms "on current" routine. The form in question is loaded at the time I am calling for it. What is the...
  11. Replies
    17
    Views
    1,110

    Hi Andrew, That looks good. I will give it a...

    Hi Andrew,
    That looks good. I will give it a try.

    Thanks,
    Mark


    Have you tried something like this which was found here - http://www.experts-exchange.com/Web_Develo...Q_11973538.html
    dim...
  12. Replies
    17
    Views
    1,110

    Hi Hans, OK, no problem. I will keep trying...

    Hi Hans,
    OK, no problem. I will keep trying things and if I come across something that works, I will post back.


    Take care,
    Mark



    I meant the Window.setTimeOut mentioned near the end -...
  13. Replies
    17
    Views
    1,110

    Hi Hans, I can try this but "Sleep" is also not...

    Hi Hans,
    I can try this but "Sleep" is also not in the keyword list. I am now wondering if some sort of "Timer" DO/LOOP would work.


    Thanks,
    Mark


    Does VBScript - sleep command help? (See...
  14. Replies
    17
    Views
    1,110

    That sounds like it may work. Any idea how you...

    That sounds like it may work. Any idea how you would monitor the clock?

    Thanks,
    Mark


    Perhaps you can write a Do loop that simply burns up time doing something useless and monitoring the...
  15. Replies
    17
    Views
    1,110

    Hi, WScript will not work with VBS 5.5. Do you...

    Hi,
    WScript will not work with VBS 5.5. Do you have any ideas of another way to waste a second or two?

    Thanks,
    Mark


    I can use WScript.Sleep in a .vbs file without problems - see attached...
  16. Replies
    17
    Views
    1,110

    Hi Hans, I will try but I am not seeing that in...

    Hi Hans,
    I will try but I am not seeing that in the VBS 5.5 command reference.

    Thanks,
    Mark


    I can use WScript.Sleep in a .vbs file without problems - see attached sample.
  17. Replies
    17
    Views
    1,110

    Hi, The equipment is a machine that acts like a...

    Hi,
    The equipment is a machine that acts like a printer with programmable input. There is an option to run VBScript 5.5 compliant commands with the job file when it runs. Looking at the VBS 5.5 help...
  18. Replies
    17
    Views
    1,110

    Hi All, I am working with some VB script (5.5)...

    Hi All,
    I am working with some VB script (5.5) on a piece of equipment and would like to pause, or delay, execution of the script for a couple of seconds. Does anyone know if this is possible? I am...
  19. Thread: Pasted Text

    by santosm
    Replies
    5
    Views
    285

    Hi Hans, Since this is something we do quite a...

    Hi Hans,
    Since this is something we do quite a bit with the DB and it is inefficient in it's current state, I think I will dive in....

    Thanks,
    Mark



    You can use Automation to control...
  20. Thread: access 2003

    by santosm
    Replies
    2
    Views
    223

    You can try using the Me.AllowEdits = True (or...

    You can try using the

    Me.AllowEdits = True (or false)

    based on conditions for the form. I use this all the time and it works great. You would need to go to the code window for specific event on...
  21. Thread: Pasted Text

    by santosm
    Replies
    5
    Views
    285

    Hi Hans, No idea at this point. It is hard...

    Hi Hans,
    No idea at this point. It is hard enough to try to isolate the corrupt record after the text is pasted in and I wouldn't have any clue how to find out as we usually just delete the faulty...
  22. Thread: Pasted Text

    by santosm
    Replies
    5
    Views
    285

    Hi All, In my DB front end, the user can paste...

    Hi All,
    In my DB front end, the user can paste in notes from various places. Is there some code that will turn it into pure text before stamping it into the table? Sometimes on paste operations, the...
  23. Thread: Allow Edits

    by santosm
    Replies
    2
    Views
    264

    Set the Allow Edits property to Yes and the...

    Set the Allow Edits property to Yes and the Recordset property to Snapshot. This will disallow editing, adding new records and deleting existing records, but leave unbound controls enabled.
    ...
  24. Thread: Allow Edits

    by santosm
    Replies
    2
    Views
    264

    Hi All, I have a form which for the most part...

    Hi All,
    I have a form which for the most part contains read-only information. Along with that, I have the allow edits property set to no on the form. There is a new option group I added to the form...
  25. Replies
    2
    Views
    236

    Re: All records not being returned (2003)

    Hi Hans,
    Same issue I had a while back. The problem was actually in how I was doing the movenext / movefirst commands.

    Thanks for jogging my memory!

    Mark
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4