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 SkipVought 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. 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?
  16. bobbybobbertson

    interpolating variable from file

    Also, can you by chance explain that code. I dont' really understand it: print eval qq^qq(@include_file)^;
  17. bobbybobbertson

    interpolating variable from file

    Thanks, I'll have to try that!! Out of curiosity, is there a security concern with the eval? Does that statement just fill in the variables, or would it be possible to execute some maliscious code. Say someone put some backticks in the html file? Its not a big concern, but I will have...
  18. bobbybobbertson

    interpolating variable from file

    I've got a perl problem. I sort of want to use a php style "include" file in perl. What I mean is that I have a file that has a bunch of html in it. However, inside that html file is a variable. I have a perl cgi program that reads that html file and includes it in its output to...
  19. bobbybobbertson

    file sharing over different LAN networks

    I want to share files from a computer on my 192.168.1.0/24 network with a computer on another local network, 192.168.0.0/24. Is this possible? I don't have a windows server. "Computers near Me" under "my network places" doesn't see the other computer, probably because they...
  20. bobbybobbertson

    what happened to explorer preview

    When browsing through my documents with Windows Explorer in Win2K, I could preview audio and video files without having to open up an actual player. It was nice. The mini player was right in windows explorer. This seems to be missing in XP's explorer. I can preview pictures, but no longer...

Part and Inventory Search

Back
Top