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

    Domain administrator not getting administrator rights

    I am having an issue where all computers in the domain besides one get administrator rights when I log in. I have created new admin users to see if that will allow me to get admin rights on the local machine, but that did not work. What is likely going on with this computer? I do not have...
  2. phyrtech

    convert string ordinals to integer

    I have done some searching and there may well be no solution for what I'm doing. I am attempting to (in a general manner) convert ordinal strings (first, second, third, forth, etc.) into integers. Something akin to: Ordinal.Parse("first") would yield 1 as an integer type. Does this...
  3. phyrtech

    optimze function

    whosrdaddy, By creating a function like this, you are: 1.) adding processing overhead to your application that is unnecessary 2.) making the code less maintainable 3.) adding more potential for bugs and errors into your program I would highly recommend leaving it as a constant in your...
  4. phyrtech

    Parameter Passing

    Yes, the [in] and [out] mark the parameters as input and out respectively. Are you using C++/CLI? Could you please post the code you are using this with so I can see what you are trying to pass to the method? Phyrstorm Technologies, Inc. http://phyrtech.com
  5. phyrtech

    Standby vs Hibernation

    DTSMAN, If you run a lot of hard drive intensive applications (video processing for example), then your best line of defense is regular defragmenting. The defragmenting process does a lot of reading and writing to the hard drive, however, studies show that having a low degree of fragmentation...
  6. phyrtech

    Finding the correct control to use?

    Bujitsu, Yes, ListView is likely the control you want to use. If you don't need to do anything with the ping data, I suggest simply outputing the ping result to a multiline textbox. Less work and it allows your user to select and copy the information if desired whereas you will need to...
  7. phyrtech

    How to automatically download a file that is dynamically created

    tsyle, In order to support sessions, you will need to handle cookies which store the session id. You will need to extract the cookies after each request is made and then repost them to the web server for each subsequent request: from: http://forums.asp.net/t/945319.aspx HttpWebRequst request...
  8. phyrtech

    Types and classes

    rtb1, Firstly, why are the namespaces changing from one compilation to another? The purpose of namespacing is to avoid naming conflicts. So for example: 1.) the System.Net.Sockets namespace contains a class called Socket. 2.) I want to write a class named Socket but I don't want there to be an...
  9. phyrtech

    late binding ref object problem

    robobri, Could please include the full Exception that is thrown including inner exceptions and stack traces, etc. The exception message you have posted indicates that the member "Item" you are trying to invoke on the return value of Bookmarks.GetType() is throwing an exception. The actual...
  10. phyrtech

    How to automatically download a file that is dynamically created

    tsyle, To answer your question fully, I will need some additional information. 1.) Do you need your program to "log in" to the website from which you will be downloading this file? 2.) Will the program be posting data to the site in order to generate these reports? If you are simply trying to...
  11. phyrtech

    Compression over VPN

    I have successfully installed poptop on my linux box at home. I can successfully connect to the vpn and map network drives, etc. Of course, running vpn across 2 crippled cable lines (40KB max TX on both lines) makes for rather slow vpn. I then noticed that there is 0% compression. I checked the...
  12. phyrtech

    Help with apache + SSL

    I just recently switched my server from windows to Linux to provide the extra security. I am trying to install apache with mod_ssl but I am having some difficulties. Here is what I have done so far: Install Redhat 9.0 with apache httpd added LoadModule ssl_module modules/mod_ssl.so added...

Part and Inventory Search

Back
Top