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 strongm 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. txgeekgirl1

    Walk through date range in a variable for an array

    Olaf - My daughter lives in Koln and does enjoy the extra holidays along with her vacation. She most appreciates that in Germany - most companies don't scoff at a 3 week vacation, especially if traveling to the U.S. or crossing an ocean. Also that between Christmas and New Years most companies...
  2. txgeekgirl1

    Walk through date range in a variable for an array

    That would work in a private company - this is for gov't. We get no breaks and have no down time. I even had an Exec Director during a tornado tell me to do what I would have done before computers. I turned to my boss and said "She does know that what I do didn't exist before computers, right?"...
  3. txgeekgirl1

    Walk through date range in a variable for an array

    Olaf - you are right - it was brut force populated because we don't do some holidays and get extra days for others. Hopefully the people we are tracking lag time for and their supervisors straighten up and get their notes in the system in under 2 days like they are supposed to. *look for...
  4. txgeekgirl1

    Walk through date range in a variable for an array

    I did an ARRAY for holiday dates from 11/24/2016 - 01/01/2024 and threw it in the bottom of the function that takes out weekends.
  5. txgeekgirl1

    Walk through date range in a variable for an array

    GriffMG - THEN can or cannot be used - I write in several languages and use just to be consistent. The array is declared and lnNewDays is also declared higher up in code as it is used throughout the function. Thanks for your input
  6. txgeekgirl1

    Walk through date range in a variable for an array

    Instead of : STORE {} TO x FOR x = Casedata_.svcdate TO Casedata_.CreateDate I used a DO WHILE STORE casedata_.svcdate TO x DO WHILE x <= Casedata_.CreateDate
  7. txgeekgirl1

    Walk through date range in a variable for an array

    Thanks guys - I got it....ask Google enough in a number of different ways :) IF Casedata_.CreateDate - Casedata_.SvcDate > 2 THEN LOCAL x, y STORE casedata_.svcdate TO x STORE 0 TO y DO WHILE x <= Casedata_.CreateDate messagebox(DTOC(x)) IF DOW(x,2) <> 6 OR DOW(x,2) <> 7...
  8. txgeekgirl1

    Walk through date range in a variable for an array

    I am trying to walk a date range using a For variable to compare to an array. I am getting a not numeric nesting error - it seems to be in the walk between the svcdate and createdate - FOR x = Casedata_.svcdate TO Casedata_.CreateDate. Any help is much appreciated. IF Casedata_.CreateDate -...
  9. txgeekgirl1

    VBA IN WORD - ANY HELP IS APPRECIATED

    Hi Gerry - I have been writing software and databases - I have NEVER had to try to do ANYTHING with VBA in Word. My boss had a thought.... they are scary things. Thanks for the site info
  10. txgeekgirl1

    VBA IN WORD - ANY HELP IS APPRECIATED

    So - these controls - made off the developer toolbar - unlike Access or Excel - have NO Name, No identifying information. In WORD are you just not able to backcode the controls like you can in Access and Excel? I mean - I think it's crap if you can't considering it is all VB code and you should...
  11. txgeekgirl1

    VBA IN WORD - ANY HELP IS APPRECIATED

    DocVariables is NOT what I am looking for - I need to be able to call a named field - in Access it would be something like me.tbMyField.enabled = false JACK hasn't been good since season 3 when they let his snotty little daughter work for him - not applicable in real life. Gerry - I will look...
  12. txgeekgirl1

    VBA IN WORD - ANY HELP IS APPRECIATED

    Hi Folks! So I have been tasked with trying to make a word doc function like a lockable database form but am running into issues. Task - create 3-5 fields with input. Create a button that when clicked the 3-5 fields lock so that entries cannot be changed and enable a Word signature block...
  13. txgeekgirl1

    Dealing with Electronic Signatures

    We are in a position where we have a series of workers that need to grab "wet ink" signatures onsite and then at times forward those signed docs on via email and have other outside entities "sign". I have been playing with Word 2010 and on a tablet we can capture signatures with a stylus (much...
  14. txgeekgirl1

    Referencing an unopened Form With a String reference

    So let's assume I open the form before making the call to the function to populate the Function with the form name as a string but needing to be a form, how can I then get the form as the variable into that function.
  15. txgeekgirl1

    Referencing an unopened Form With a String reference

    I need to pass the form name to my function as a form in a string context. Although it is not normal - because we experiment a lot with pushing Access to it's limits - we are building master forms on the fly and the values could be 1-99 so MyNum can be any of these. Function FixForm expects a...
  16. txgeekgirl1

    Referencing an unopened Form With a String reference

    I have a string that contains the name of a form, something like “Update Requests 1”. It has to start as a string because the digit at the end will change based on user interaction. The digit could be up to 99 so a giant case statement is unmanageable. I need to populate a variable of data type...
  17. txgeekgirl1

    Calling PowerShell script from Access 2010

    I had a program written in VBA which called a PowerShell script to create Exch2010 mailbox accounts for new users. Worked fabulous with Access 2003. We moved our Databases to a newer server with Access 2010 on it. I have checked reference libraries and anything pertaining to the code -...
  18. txgeekgirl1

    Calling a PowerShell script from Access 2010

    I had a program written in VBA which called a PowerShell script to create Exch2010 mailbox accounts for new users. Worked fabulous with Access 2003. We moved our Databases to a newer server with Access 2010 on it. I have checked reference libraries and anything pertaining to the code -...
  19. txgeekgirl1

    Storing an array in a SQL Server Record

    I think that is why my boss thinks it's possible - we do a lot of FP coding. We are looking to write a database but have to use a web interface and my boss thinks the easiest way to gather the data would be to have an array dump so he doesn't have to write field to field.
  20. txgeekgirl1

    Storing an array in a SQL Server Record

    Is there a way to store an array in a SQL server record such that elements can be retrieved using array indexes rather than having to specify specific fields in a built DB.

Part and Inventory Search

Back
Top