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!

Search results for query: *

  • Users: d1trupinoy
  • Content: Threads
  • Order by date
  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

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