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. d1trupinoy

    How to see if a process is running on a Win32 box?

    Can someone share some python code that sees if a process is running? example: If notepad.exe is running on box then return 1 (or kill notepad) else return 0 Thanks. newbie to python here
  2. d1trupinoy

    Trim Folder path to just folder name

    I figured it out.... use string.rfind to get the location of the last '\' then just slice the string.
  3. d1trupinoy

    Trim Folder path to just folder name

    Newbie to python here. How do I trim the full path to a folder string to just the folder name example - full path = "C:\\my test folder\myfolder" desired string output = "myfolder" Thanks for the help.
  4. d1trupinoy

    Newbie question: How to continue code on next line

    Newbie to VB here. When coding, If I have a really long array or function, how can I continue the line of code to the next line so its readable? example vtests = array("test1",........ .......... .........., "last test") Thanks for the help.
  5. d1trupinoy

    Need Help: Create folder based on folder path passed in

    Perfect! Thank you!
  6. d1trupinoy

    Need Help: Create folder based on folder path passed in

    snotmare, I looked at that thread and it is about "After update property on a form". I do not see how that relates to my question on creating multiple folders based on path
  7. d1trupinoy

    Need Help: Create folder based on folder path passed in

    Newbie to VBS here. So far this forum has been very helpful to me in learning. I would like to create a script that creates a folder based on a path that I pass in. The problem I have is that depending on the path, multiple folder may need to be created in order to drill down to the correct...
  8. d1trupinoy

    How to read a line from a file

    I am a newbie so please be specific. How can I read in 1 line at a time from a file.txt. Example: -blahbla-,my name is blah,ok' I amhere 'omally,-myname 'isomally,oneword ...... I will use strtkn to parse each line by comma. I need to figure out how to read in one line first though before I...
  9. d1trupinoy

    Run-time error '3251' when checking for Dirty from form

    No I checked on that. What I found is that when you update some controls on a form (like a combo box) it actually updates other fields to different records. Therefore I think I cannot compare OldValue and Value for those fields since they were basically switched. Is there a way to find out if...
  10. d1trupinoy

    Run-time error '3251' when checking for Dirty from form

    I am trying to build a module that will write a log everytime Dirty is true. Right now I just call this module from various forms using the Before Update event. Some forms it works fine but other forms cause an error 3251 - Operation is not supported for this type of object. It will happen on...
  11. d1trupinoy

    How do I build a Query in VB based on multiple Query results

    Thank You!. A simple union query was a all I needed to build and now my report just shows the founds products. WooHoo.
  12. d1trupinoy

    How do I build a Query in VB based on multiple Query results

    I have 13 Queries which find items based on certain criteria (e.g. find objects that are red, find objects that are square, etc.) I would like to be able to generate a report based on all the objects found from the multiple queries. Keep in mind that the queries may have found the same object...
  13. d1trupinoy

    Generating a Report based on checked Values

    Hi I'm a newbie to VBA and Access. I want to build a form where I can check status values like "Not Designed", "Designed", and "Changed". Based on what words I checked I would like to generate a report to list the items that have these status values (e.g...
  14. d1trupinoy

    Need to Query a table for like records write to another table

    Hi I am a newbie to ACCESS and VBA. I need to write a VBA script module to search an existing table for like records based on a field (e.g. find all records in animal table that are dogs). I then need to write all the found record field conents into one field of another table (e.g. when you...

Part and Inventory Search

Back
Top