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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by bobbybobbertson

  1. bobbybobbertson

    function for "insert slides from files"

    here is a macro to find all the files in a directory (and subdirectories) and insert their first slide into the present doc. (I wish I new how to insert all slides) Sub insert() ' ' Macro recorded 10/18/2004 by myname ' ActivePresentation.ApplyTemplate "C:\Documents and...
  2. bobbybobbertson

    Find files in a directory

    found this. Thanks Sub insert() ' ' Macro recorded 10/18/2004 by myname ' ActivePresentation.ApplyTemplate "C:\Documents and Settings\myname\Desktop\delete\AMR Leased Line Backup -- Overview and Definition.ppt" Dim strFileSearch() As Variant Dim intFileCount As Integer Set fs =...
  3. bobbybobbertson

    Find files in a directory

    I am not a programmer, but am trying to write a macro. Is there as VB function to find all the files in a directory and put them in a variable (array) that I can then loop through? I think this would be easy for a programmer. Can you help with the code? 1) Find .ppt files in directory...
  4. bobbybobbertson

    function for "insert slides from files"

    looks like I just need to: ActivePresentation.ApplyTemplate "c:\PPTOutline.doc"
  5. bobbybobbertson

    function for "insert slides from files"

    Thanks. From your reply, I found this: .Slides.InsertFromFile "c:\PPTOutline.doc", 1 but now I have the problem that it doesn't keep the source formatting which is a box I can check in the "insert slides from file" dialog box. Any idea how to keep its source formatting so the slide doesn't get...
  6. bobbybobbertson

    function for "insert slides from files"

    Is there a VB function for the "insert slides from files" command in Microsoft Power point?
  7. bobbybobbertson

    windows xp plug and play

    Yes, I did uninstall the device in Device manager. That is how my problem started in the first place. I also tried rebooting with the device connected, and it didn't help. Where is the \\Winnt\Inf foler. I am showing all the hidden folders, but still don't see it? Thanks, Linney. I thought...
  8. bobbybobbertson

    windows xp plug and play

    Yes, I did uninstall the device in Device manager. That is how my problem started in the first place. I also tried rebooting with the device connected, and it didn't help. Where is the \\Winnt\Inf foler. I am showing all the hidden folders, but still don't see it? Thanks, Linney. I thought...
  9. bobbybobbertson

    windows xp plug and play

    I have a 1394 to ide device that lets me plug a hard drive into a 1394 connection. I was having problems with it, so I tried uninstalling the driver. Well that was dumb, because now when I plug in the device nothing happens. I have tried clicking on "scan for hardware changes" and...
  10. bobbybobbertson

    help with find command

    That does seem to work. I had to get rid of the negation ^ in '[^.]' Also, my goal was to use the -exec part to remove the files. So instead of -exec echo {}, once I got it working, I would use -exec rm -r {} But I bet that part could be done by piping your output into xargs or something...
  11. bobbybobbertson

    help with find command

    woops that should have been... find /home/sites/home/web/dl/ph/ -regex "[^\.]" -type d -mtime -2 -exec echo {} \; but that still doesn't seem to work
  12. bobbybobbertson

    help with find command

    I want to find all the directories within a directory older than 2 day. However I don't want find to return any directories that start with a dot (.). The following would work with perl regex's but it seems it doesn't work with find: find -regex /home/sites/home/web/dl/ph/[^\.] -type d...
  13. bobbybobbertson

    I can hear my phone line in my computer speakers

    I have a phone modem on my computer. When I talk on the phone, the audio from the phone can be heard in my computer speakers. How do I turn that off? There used to be a "phone" setting in windows 2k where you could mute the phone audio. I don't see that in windows XP. thanks
  14. bobbybobbertson

    change data field for all users in current lookup

    Is it possible to change a certain field for all the users in the current lookup? In other words, say I wanted to change everybody's phone number to 555-555-5555 without editing each individual contact. Is that possible? thanks
  15. bobbybobbertson

    installing debain from a remote location

    Anyone know if it is possible to convert a redhat machine over to debian from a remote location? I have root access, but don't have physical access. Is it possible to switch, or am I dreaming?

Part and Inventory Search

Back
Top