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

    2 VPN Tunnels using FVS318v3, endpoints cannot "see" each other

    Thanks for the reply Jimbopalmer, The admin for the 172.21.6.0 network won't give access to 192.168.0.0 network because he has multiple networks accessing the server. I did talk to him before and he said he granted access to the network for the 192.168.127.0 network and the 192.168.126.0...
  2. pellet

    2 VPN Tunnels using FVS318v3, endpoints cannot "see" each other

    Hello everyone, I have a Netgear FVS318v3 router that I have created 2 separate VPN tunnels with. I will try to lay out the networks below: Segment A: 172.21.6.0 network (application server) Segment B: 192.168.127.0 network (FVS318v3) Segment C: 192.168.126.0 network (remote client) Segment...
  3. pellet

    Help with finding a specific text inside a string

    What are the defined set of words you want shaded?
  4. pellet

    Parsing data from an access database

    And do you (or anyone else) know of a better way for me to do a better search besides looking for spaces?
  5. pellet

    Parsing data from an access database

    Thanks again George for the info. Any idea as to how I can keep my search limited to only one line of data instead of my program going out and searching for the next "OR" on any given line?
  6. pellet

    Parsing data from an access database

    Hi George, Yes, your logic does make a lot of sense and seems to make parsing a lot easier. Would you parse the data in the actual Access Database and then have the VB.NET program pull out the values or is there a way to have the program actually do the parsing without having to program...
  7. pellet

    Parsing data from an access database

    Hello everyone, First off, I would like to thank all of you for your contributions to this site. Searching thru the posts here has saved my sanity on multiple occasions. :) I am just getting started in VB.NET and I am using Visual Studio 2008. What I am trying to do is open an Access...
  8. pellet

    Prompt for user name in Script

    You can try this - but you will need to be sure you know the exact username for the profile you wish to delete the files and enter it exactly as it shows in Windows (ie. "user.domain" or just "user") ------------------------------------ Set objFSO = CreateObject ("Scripting.FileSystemObject")...
  9. pellet

    VBS changing homepage on all comps in local network

    Hmmm... you have me wondering what exactly you are trying to accomplish.
  10. pellet

    Email an Attachment using VB

    Your initial post was not very clear as I am not sure if you are trying to email this using VB or a different program. I did find this and hopefully it will help. http://www.freevbcode.com/ShowCode.Asp?ID=109
  11. pellet

    Query computers for specific app and write result to txt

    MrMovie is correct - please tell us what you have done already, what has worked for you and what hasn't, etc. There is no sense in someone reworking code for your program if you already have it. ------------------------------------ To query an OU, you can try this: Set colItems =...
  12. pellet

    Cannot copy data to include parentheses into Notepad

    Hi MajP, Thanks for your reply. I will try your suggestion to see if it works. I apologize for not adding in "using sendkeys" in the title - I know there are character limits in the title and I guess I really didn't realize the significance of how the variable was being passed. Bubba100, I...
  13. pellet

    Cannot copy data to include parentheses into Notepad

    No, unfortunately... and I am getting ready to pull all of my hair out.
  14. pellet

    Cannot copy data to include parentheses into Notepad

    Hi Skip, Good question... I never thought of that - I just did it that way to convert it to uppercase letters.
  15. pellet

    Cannot copy data to include parentheses into Notepad

    Hi Randy, Here's a piece of the code in question. If I posted the whole thing, it would be multiple pages. Private Sub cmdTransfer_Click() On Error GoTo Err_cmdTransfer_Click Dim Person1 Person1 = StrConv(Me.Per1, vbUpperCase) AppActivate "Untitled - Notepad" SendKeys...
  16. pellet

    Cannot copy data to include parentheses into Notepad

    Thank you for your reply The data type in question is set to Text. I seem to have checked everywhere and I do not see any type of input mask or format on the field. What I mean by pull is I create a variable in the code and then do a sendkeys command using that variable to the location I am...
  17. pellet

    Cannot copy data to include parentheses into Notepad

    Hi everyone, First off, I would like to thank you all for taking the time to read my post. Without experts like you, working thru issues would be much more difficult than what it is. My question is, have several databases linked together and I attempting to pull data out of one column in one...
  18. pellet

    Numbers from a table that have a parenthesis in them

    Hi dhookom, I was confused about using Input Mask when retrieving data from the database and copying it to Notepad. The data I need is displayed correctly in the database table, it just doesn't copy correctly to my external program or Notepad for that matter. What I was getting at in one of...
  19. pellet

    Numbers from a table that have a parenthesis in them

    Thanks for your reply John. I agree with you 100%. I can go into the table, copy the data in question and paste it into Notepad without a problem. If I allow that same data to be written into Notepad without my manual intervention of copy and paste, it seems to drop the parenthesis - and...
  20. pellet

    Numbers from a table that have a parenthesis in them

    Sorry dhookom, I should have clarified. I do understand Input Mask - what I didn't understand is your comment about the (). I don't have any filters on the data - and in fact I formatted it as "" to display everything as literal characters from the table. I would put a filter on it if all the...

Part and Inventory Search

Back
Top