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 Chriss Miller 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: Haunter
  • Content: Threads
  • Order by date
  1. Haunter

    Timed Event

    Hello, I have a need to kill a process at a certain time of day every day. I have got everything worked out for the new service except the event trigger. Is there a simple way to set an event to fire everyday at a certain time? I have looked at System.timer but would like just to pass a...
  2. Haunter

    ScrollPane is being a Pain

    Hello, I am developing my first AS 3.0 full site and running into scrollpane issues. I was wondering if anyone could give me a hand. www.bnipayitforward.com is the site and under the FAQ section is where the scroll pane is located. On my local machine everything runs fine. I have tested it...
  3. Haunter

    Password Recovery

    I have inherited a network that was badly documented and now have to make changes to the backup exec program. One small problem. No one seems to remember the password. I have the userver name since it is displayed in the login screen. Is there a solution to this problem? haunter@battlestrata.com
  4. Haunter

    FTP Recommendations?

    Hi I am new to FreeBSD. I am moving completely away for win32 and going to FreeBSD. I would like to know what you gents recommend as an FTPd. I would like something that provides the best speed with uncompromised security and fairly easy to configure. I Know FreeBSD comes with a native FTPd but...
  5. Haunter

    Onstream sc30

    I have upgraded my NT server to 2003 but the tape drive is giving me fits since the company is out of biz. Has anyone got the Onstream sc30 to run on server 2003 and if so what backup software? Thanks haunter@battlestrata.com
  6. Haunter

    SC30 and WIN server 2003

    I have recently upgraded a NT server to 2003 all is fine except for the tape backup. Has anyone had a problem. I installed the XP drivers an all seems ok but echo that comes with onstream does not install on 2003. I will but what ever I need but what product is known to work with sc30 and...
  7. Haunter

    DNS Server Status?

    Ok I have a requirement to check three DNS servers to see if they are availible or not? My solution was to just set my local DNS to the IP of the desired DNS server and making a query. IF results then it is up. Well the problem if it is down it Net::DNS waits a long time to retry querys I...
  8. Haunter

    XML and int

    I need to be able to read an interger from an xml attribute. I am not see the answer. I have decoded the entire document except for this. Can anyone help <report> <Section> <Header bookmark="Header1">name</Header> <DataDir>c:\blaj\blac</DataDir> <Data type="file"...
  9. Haunter

    Map vs foreach?

    I suppose this is strictly a acedemic question but has anyone benchmarched map vs foreach on a large array? I recently used map with the sorting functions of perl and found it to be very condense code to do a common task. Any thoughts? haunter@battlestrata.com
  10. Haunter

    regex issue

    I need to get a piece of data out of an array elemet using a regex but cant seem to get the syntax right. Now the data in the array elements is as follows 33.3 kb/s (6.5%) I am trying to grab the 6.5% on each element. Note the numerical data within the parathesies changes but holds the same...
  11. Haunter

    Image swap with testing

    I have a calendar that is used to select a date and then display an image based on that date. Now future dates of the pictures dont exist on the server. I need to test to see if an image exists before displaying it. If the image does not exist I want to display a default image. var...
  12. Haunter

    Remote Desktop Problem?

    I was using remote desktop to administer a test server that I am learning on at the moment. I was working on establishing VPN as a current project. Once I successfully setup remoting for VPN I was unable to log in using remote desktop connection. Is there a list of setting somewhere I need to...
  13. Haunter

    Archives.. Manipulation

    OK, I profess my ignorance. I know what it is from a user perspective but to programatically interact with an archive I am lost. I have a project that I am using archives as the source of all resources for the porgram. I am trying to program and abstraction layer to the archive. I realize this...
  14. Haunter

    converstion of int to string

    I am using the above code inside a template to convert basically any basic type to a string. More to the point float, double and int are being converted to strings template<class num> string intToStrig( num ) { ostringstream stream; stream<< num << flush; string str(stream.str()); return...
  15. Haunter

    Portability of STL string

    I have been asked to write a string wrapper class to guarentee to portablity/security of the code manipulating strings. The request is to really avoid STL string class as much as possible and avoid use of the cstring class for security reasons. I am not sure what is and what is not "portable...
  16. Haunter

    assert vs try catch

    I am wondering which is the better methond of implemetation? METHOD # 1 try { /* try catch block may not BE best error implementation */ m_p = new char[m_size]; }...
  17. Haunter

    Visual Studio and GNU compilers

    I would like to use the assest of Visual Studio for development but I would like to compile my code with the GNU Complier gcc. Is this possible? If so does anyone know of a tutorial for the setup? Thanks haunter@battlestrata.com
  18. Haunter

    When to use DataAdapter?

    I am using MySQl to develop and simple app that stores inputted data and then dumps it to a formated text document once the submission is completed. Most of the data is and INSERT on the data base. Although UPDATEs are always needing to be done but not really frequently. Are there guide lines on...
  19. Haunter

    Not reinventing the wheel

    I am reading from a flat file database with the following structure ID | ParentID | NAME ID | ParentID | NAME ID | ParentID | NAME ID | ParentID | NAME I am trying to avoid reinventing the wheel here. I now it is possible to iterate through the array an build a tree. I am trying to create...
  20. Haunter

    Port Blocking

    Hello, New to the forum but I have a problem that I have been stumpted by for several days. I have a small test server program that I know is working properly that is getting a blocked port error. I resulted to trying several ports to open and all reported the same error. I installed the...

Part and Inventory Search

Back
Top