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

    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 -...
  2. 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...
  3. 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...
  4. 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...
  5. 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 -...
  6. 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 -...
  7. 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.
  8. txgeekgirl1

    Creating a routing system in Sharepoint

    When we first implemented Sharepoint, it was suppose to be an "Out-of-the-box" use what is readily available solution for interdepartmental communication, document storage, and task assignment. With all that up and going, I have now been tasked with getting some kind of document routing system...
  9. txgeekgirl1

    Creating Exchange User from VBA code

    Hi All - I have a DB for supervisors to use when they hire a new employee. One thing we would like the IS Clerk to do after she has reviewed the info is to be able to click a button and have it create our user with email box. I have the code tweaked to create the User, assign info/pwd, and add...
  10. txgeekgirl1

    Using VB to talk to ADSI - Write to Users

    I have this bit of code and need to write to the Users folder in Active Directory. How would I add that Folder to the dirEntry var? Private Sub btnGo_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGo.Click CreateAdAccount(UserName.Text, "", ""...
  11. txgeekgirl1

    Active Directory Management Question

    IS is often told 2-4 weeks ahead of time that we have personnel leaving but then don't get termination reports from HR until 2-4weeks after they have gone. Is there a way to set a future time and date in AD to disable an account?
  12. txgeekgirl1

    Looping through a TXT to grab case num

    I have a single column txt with seperator and a carriage return. Here - msgbox(s) is return the name of the file, not the first line inside the txt. Can anyone tell what I messed up? Dim myRootpath As String = "\\backupcenter\PDF_Archives$\MedRecords\" Dim myTemplatePath As String =...
  13. txgeekgirl1

    Math Calculation Help... Working with stripping Minutes

    I have the NewDuratn rounding and calculating correctly. Here is the issue. My first 2 values are 1.00 and 2.00 - I need to further that and calculate minutes back into minutes.... example - I have a 1.94 which is like 110 min. I have to divide .94/60 and add it back on. In VFP 6 I don't have...
  14. txgeekgirl1

    Help setting an array

    Hi everyone - I know this sounds goofy as all get out, but the only arrays I have EVER built in FoxPro are for SCX window pick lists. I have a calculation where I need an array that is Number of minutes long by number of clients wide. Group A Met for 810 minutes - every client gets a portion...
  15. txgeekgirl1

    iText Sharp - pull PDF Title

    We have a data archiving system that uses iTextSharp to "stamp" a label contained in the PDF title. I need a routine that can read the file name and deliver that title. Has anyone ever used iTextSharp to actually pull data the other way?
  16. txgeekgirl1

    Have ListBox Selection auto select another ListBox Selection

    I have two list boxes that are interdependent on each other for the user to get to the next step. One is used to fill the other with a sampling. After the sampling is finished, I would like the EU to not have to click on the first listbox to get it's values then the second to create a report on...
  17. txgeekgirl1

    Parsing a string

    I have a returned string from a black box function that looks like this: FirstName LastName "on" DATE "Space" TIME The variables I have listed are not real variables - just the name of what is in this string. I need to parse to "on" to grab the name and then some kind of substr from "on" to...
  18. txgeekgirl1

    Excel Function - Formula Issue

    OK - so as we know, you can have cells that do this: A1 = 11:11 A2 = 5:45 A3 = 7:02 A4 = 132:05 In cell A5 you can hit your funky E to sum and then reselect the Summed Cell - (it will be incorrect) - and click Format/Cells/Custom/Type = [h]:mm and Voila! it adds hours and minutes. Makes you...
  19. txgeekgirl1

    VB and iTextSharp to Print PDF

    Anyone out there using VB and iTextSharp for generating PDFs inside a VB program? I have a question with printing the pdf doc once it is made. Is it possible to call the pdf to print through VB or even with the iTextSharp lib? I have found many forums where the same question is asked but...
  20. txgeekgirl1

    XML in DOS

    I really don't know if I can get any help but here it is.... I have a .UXML file that I have to rewrite in a batch file to create permissions files on the fly. My problem is - how do I get around the special characters that also have DOS connotations? ECHO <?xml version="1.0" encoding="utf-8"?>...

Part and Inventory Search

Back
Top