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 Mike Lewis 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. RoyceyBaby

    Cisco ASA remote VPN, routing to MPLS network on secondary interface at main site

    Hi, I have a problem I don't know how to solve. We recently installed an MPLS network between Site A and Site B. I have managed to get SiteA's 5510 to route to Site B by connecting the MPLS router to e0/2 and adding in some static NAT mappings and a static route to that subnet. (e0/0 is...
  2. RoyceyBaby

    VPN Client connect to second sites network?

    I am hoping that you nice people can help me with my problem :) To describe our enviroment, we have two sites running Pix506E's. They are connected to each other using VPN so if i sit in Office A I can access servers in Office B and vice versa. We also have remote users that connect to the...
  3. RoyceyBaby

    # 5.4.6 configuration error caused mail to bounce

    We have an active directory setup over three sites. We have a problem that if someone sends a message to a user in SiteC then the get back the following error message even though the email is received correctly :- We used to have Site C's email addresses setup as Contacts before we connected...
  4. RoyceyBaby

    Can't seem to send \r on serial port

    Fixed it!, I was sending a 00hex after the \r which was confusing things. FYI TeraTerm did not log this, I used HyperTerminal's logging facility to determine this. Royce
  5. RoyceyBaby

    Can't seem to send \r on serial port

    Hi, As per subject, I can send a \n fine using the code below: write(fd, "\n", 1); when I try and send: write(fd, "\r", 1); the CR character is not received on the other end. I am using linux for writing my C program, and I have a WindowsXP machine running TeraTerm...
  6. RoyceyBaby

    Accounts keep locking users out!

    Where do you turn on security auditing? Thanks, Royce
  7. RoyceyBaby

    ODBC connection problem :(

    Help! I have installed postgreSQL 7.3.2 from source for my LFS4.0 linux system. I have downloaded psqlodbc. When I setup a linked table in access, it works briefly but then it will have connection problems after a short while, 60 seconds? The ODBC errors I am getting are the following: -...
  8. RoyceyBaby

    Comparing textbox on form to NULL

    Thanks, i gave you both a star, because I'm sure I will find a good use for both methods. Royce
  9. RoyceyBaby

    Comparing textbox on form to NULL

    Hi, I really don't know what I am doing wrong, so I wonder if you guys/girls can help me. I have a text box on my form called: text_Currency I also have a button called: command_CarriageCharge I am trying to tell whether text_Currency is blank/null/empty or whatever. I am using an IF...
  10. RoyceyBaby

    Create Union Query based on available tables in DB

    Hi, What I have is tables with sales for each of the period in a year. All of these tables have the same columns. What I am trying to achieve is to output sales for the year by combining all of the tables together. I believe cursors will achieve what I require but I have never used them...
  11. RoyceyBaby

    Create Union Query based on available tables in DB

    Hi, I have an puzzle. I have worked out how I can check what tables I have in my database using the follwing SQL. SELECT name FROM sysobjects WHERE type='U' AND left(name,3)='xyz' This gives me the names of all of the tables I wish to union together. Question is how can I contruct the SQL...
  12. RoyceyBaby

    WINS could not read for UDP socket

    Hi, I keep on getting the following error on my 2k Wins server, but I cannot find out how to correct it or what the error actually means. Any help would be appreciated. Royce Event Type: Error Event Source: Wins Event Category: None Event ID: 4204 Date: 28/08/2001 Time: 09:48:20 User: N/A...
  13. RoyceyBaby

    How do I blank out a string?

    Hi, Simple question, I have char remember[5000]; I assign a value to it. Then I want to blank the string completly. Who can I do this, it must be really obvious but I can't figure out how. Many thanks, Royce
  14. RoyceyBaby

    linux + serial port + loop stalling

    Hi, I am trying to read data in from the serial port, the problem I am having at the moment is to do with using the printf command. It seems to be hanging in my loop and stalls the continuation of the program. I have attached the offending code below. PS I am trying to learn C, please don't...
  15. RoyceyBaby

    How to identify a CR and LF

    How can I do this in c, in vb I would usually say if test = chr(10) then 'CR code here elseif test = chr(13) then 'LF code here end if Many thanks, Royce
  16. RoyceyBaby

    How to identify a CR and LF

    Hi everybody, I am reading data from the serial port on my linux machine, I believe I am getting CR/LF for new lines. My code will treat this as 2 new lines. Is there a way in which I can distinguish between a CR and a LF. Many thanks, Royce
  17. RoyceyBaby

    Newbie: How do you copy one specific character from a string

    Hi all, Extreme newbie question comming up. If i have a string strA="Once upon a time\0"; strB=""; how do I copy say the third character from strA to strB, then maybe the seventh character from strA to strB. I know it is these darn pointers, but I can't get my head round...
  18. RoyceyBaby

    Newbie: Split string read from serial port

    Sorry for the confusing question. "Pull off each command" I am referering to the data I receive from my serial port, they are commands/text. I suppose the simplest question would be. How do I split a string into seperate strings, using \n as the cut point. Hope that is clearer. Royce
  19. RoyceyBaby

    Newbie: Split string read from serial port

    I am an extreme newbie to C. I am trying to write a program that reads/write data from/to a serial port. I have mananged to get a small program that reads data in from the serial port using the select statement. What I read in is whatever is in the buffer of the serial port. As such I get...
  20. RoyceyBaby

    Create PDF document in VB6

    I have Adobe Acrobat Writer installed on my machine and have noticed that it is listed under references. I am hoping this means that I can use this to create a PDF file from within VB. I have looked at the website you mentioned and it looks like a good product, if I cannot PDF with Adobe I may...

Part and Inventory Search

Back
Top