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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by smurfer

  1. smurfer

    Help Creating Bold in RTF FIle

    Thanks Paul. I had to test it slightly to get it to work finally as: print OFILE "{\\b $header}"; Not sure why that was not working as I thought I tried that before posting, but it works. Thanks for pointing me in right direction.
  2. smurfer

    Help Creating Bold in RTF FIle

    Hi, Here is the printtoFile function, very basic I belive just filling in spaces to set a length. sub printToFile { print OFILE $_[0]; for ($i = length($_[0]); $i < $_[1]; $i++) { print OFILE " "; } } and the header does not have any attributes to make it bold, there are many header...
  3. smurfer

    Help Creating Bold in RTF FIle

    Hi all, I am trying to modify a script someone else created and make certain portions of it bold. Basic it is a sheet listing values but it will list a header value I want bold, list some data objects below I do not want bold, then list additional headers (bold) and data values (non bold) as...
  4. smurfer

    Remote Desktop Error Trying to connect to Win 2K server

    Tried that as well, did not solve the problem.
  5. smurfer

    Remote Desktop Error Trying to connect to Win 2K server

    I have just recently installed Win XP Pro(Sp 2) on my home pc from Win 2k Pro. Previsouly I used to be able to connect to my offices terminal server with no problems on my old machine. After installing XP and trying to connect with Remote Desktop I get the following error: 'The remote computer...
  6. smurfer

    Help - Cant fix for Netscape 6..

    figured this one out, please ignore!!
  7. smurfer

    Help - Cant fix for Netscape 6..

    I have the following javascript code that displays a scrolling news bar at the top of my page, and it works fine for IE and for Netscapes pre v. 6. I am having problems adjusting it to work in N6, any help would be apprecaited. JScript is: <script language=&quot;JavaScript&quot...
  8. smurfer

    DBMSSOCN General Network Error

    I have an asp application hosted on a web server that interacts with a sql server 7.0 db on a seprate db server. I also have a batch job running as a task on the webserver that is talking to the Db server performing various functions. I am using an sqloledb connection with this batch job to...
  9. smurfer

    Cookie Not Writing Issue

    Yes I am using hte same lcient to access both. I have found a work aroudn although I am still curious why it did not work, but originally I had created the site using host header in IIS, and this is when it failed to write the cookies. I just changed it to the default web site on the server...
  10. smurfer

    Cookie Not Writing Issue

    I have made a copy of a working asp application that has a login page that is tracking cookie information to sign in. In our production enviroment the cookies are written with no problem, however in my exact copy of the production site, I have copied the exact code, took a backup of the db and...
  11. smurfer

    Batch File As a Task ?

    Unfortuantely yes it is that important that it needs to be run each minute, even if I run it at 2 minutes, again it is possible during a heavy period that it will take that long to process.
  12. smurfer

    Batch File As a Task ?

    I have a batch file that runs on a win2k server machine every minute. My question is since this batch process is set to run every minute, if a run of the batch process takes more than 1 minute to complete and is still running when the minute has passed and the scheduler is scheduled to start...
  13. smurfer

    Cookies with Parameters?

    I am trying to set a cookie equal to the value of a parameter that may or may not be passed in via the querystring. If the parameter is in the querystring, it will set the cookie equal to the value of the param, if not set it equal to the http_referer value. I have written code to handle this...
  14. smurfer

    Image as Submit showing x, y coordinates..

    Is there a way to remove the x,y values from a querystring if you are using an image as a submit button and using a get method to sned data to new page? Thanks...
  15. smurfer

    Setting up a Conference Room as a Resource

    Ridley, Thank you for your help, I actually discovered how to handle this yesterday, exactly as you specified as your first option. I had an idea of how to do it that way, but was opening the mailbox for the resourse from my profile, which was prohibiting me from getting to that mailbox's true...

Part and Inventory Search

Back
Top