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 TouchToneTommy 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. KenKasmar

    Act! 2007 won't open, ActSage.exe running at 50%

    Reference thread892-1363236 So far this has happened to two different machines. Act! 2007 on Windows XP, Office 2003. Act! works fine for 6 months, then all of a sudden won't start. There is a process ActSage.exe that runs at 50% CPU forever (until killed). Uninstalling/reinstalling does...
  2. KenKasmar

    MCSE or CNE equivalent to Bachelors????

    I think what is a more relevant point relates to the expectation you usually have of someone who has a degree vs. a technical certification. Sure it takes thousands of hours of lecture/study to get a computer science degree, but do you usually expect a fresh graduate to be able to be functional...
  3. KenKasmar

    Migration from Netscape Messaging 4.15?

    Has anyone gone through a migration to Exchange 2000 from NM 4.15? It looks like the migration wizard will provide transfer of account through LDAP and mailbox contents through IMAP, but I put more trust in actual success stories! Ken Kasmar MCSA, MCSE, CompTIA A+, CompTIA Network+ Red Falcon...
  4. KenKasmar

    Netscape 4.15 sp7 on Windows 2K server?

    Well... after much hair pulling and tooth gnashing (sic) I came to the conclusion that NS Messaging Server 4.15 does NOT support Win2k. I found no mention of Win2k in any docs however iPlanet Messaging does indicate that it supports Win2k. I tried setting up iPlanet Messaging and the MTA...
  5. KenKasmar

    Netscape and CSS

    The reason that this happens is that there is a CSS referenced in you page that can't be found (for one reason or another) Of course IE is smart enough to just ignore this and continue on, but NS burps a big Not Found error. Ken Kasmar, MCSA, MCSE Red Falcon Internetworking, Inc...
  6. KenKasmar

    Netscape 4.15 sp7 on Windows 2K server?

    Is anyone running this configuration sucessfully? I can't seem to get MTA to process outbound domain email. They just sit in deferred status forever? Any ideas?
  7. KenKasmar

    Running an ASP page with AT scheduler

    I am running a setup like you are asking about (on NT4) as scheduled 'Tasks'. Place the following entry in the 'Run' field: "C:\Program Files\Plus!\Microsoft Internet\IEXPLORE.EXE" http://{url of ASP page} and the following entry in the 'Start In' field: C:\PROGRA~1\Plus!\MICROS~1...
  8. KenKasmar

    Retaining password on network connection

    I have a machine running XP on a network (workgroup) with serveral machines running ME. When I set up a mapped drive to on the XP machine to a shared folder on one of the ME machines, mark it as 'reconnect at logon', enter the password (which then opens the connection), then reboot the XP...
  9. KenKasmar

    Conditionally display a graphic in a table

    Try a variation of this code to generate the appropriate image tag within your table cell: <% select case RECORDSET(&quot;taskstatus&quot;) case 'pending' response.write(&quot;<img src='pending.gif'>&quot;) case 'completed' response.write(&quot;<img src='completed.gif'>&quot;) case...
  10. KenKasmar

    4GB limit Using abobe Premiere 6

    The FAT32 files system has a 4GB upper limit on file size. NTFS does not, so if possible I would recommend converting to NTFS. I know that there are NTFS detractors out there, but I have never had problems with it myself. Thanks and good luck, Ken Kasmar Red Falcon Internetworking, Inc...
  11. KenKasmar

    Netscape Messanging server 4.15 anitirelay

    Howdy, Here is a link to the anti-relay solution that I have been using with quite a bit of success. It is basically a manually configured bulk mail filter script that you modify for your system and plug into your mail server. The directions on this site are fairly self explanatory...
  12. KenKasmar

    DV Capture problem - file size exceeded :((

    If you are running Win2k and is crapping out at 4GB then that means that you probably have the hard drive (or partition) that the file is going to is set up as FAT32 and not NTFS. You must have the drive (or partition) formatted as NTFS to have the unlimited file size. You can always convert...
  13. KenKasmar

    DV Capture problem - file size exceeded :((

    Actually if you are using Windows 2000 and an NTFS partition there are no limits to file size. This is the environment I running in and everything's all good! So much for your Windows dis.
  14. KenKasmar

    ASP+Frames=Good Idea???

    Using frames will also cause grief if you want to jump into secure mode (SSL). If you have a frame structure that is running unsecured and you open a secure page in one of the frame pane it WILL NOT display the lock on the bottom of the browser. You wind up having to replecate the entire frame...
  15. KenKasmar

    Confounded by 6.0 Differences?

    ...which is why I use Illustrator for vector graphics design and Photoshop for raster graphics work.
  16. KenKasmar

    IIS-Hosting multiple sites with same IP address

    It doesn't sound like anyone is actually answering the question, so here goes... Open up IIS through MMC, right click on your first virtual server (vwebservera), click on properties. Make sure that you are viewing the 'website' tab. Set the IP address to you 'webserver' IP address (the one...
  17. KenKasmar

    Mouseovers and &lt;input type='image'&gt; ?

    I made a slight boo boo... Here is the code that I am actually trying to get to work: <form action='post.htm' method='post' name='specialform'> <input type='image' src='button.gif' width=85 height=20 border=0 align='middle' name='gothere'...
  18. KenKasmar

    Mouseovers and &lt;input type='image'&gt; ?

    Has anybody had any success doing mouseovers with images used as submit buttons in a form? Below is an example of what I attempted that blows up... <form action='post.htm' method='post' name='specialform'> <image type='image' src='button.gif' width=85 height=20 border=0 align='middle'...
  19. KenKasmar

    Darn Apostrophes!!!

    Here's a nice little function that bypasses all apostrophe and quote problems: <%Function apostrophe(strIn) apostrophe = replace(strIn,chr(34),chr(180)&chr(180)) apostrophe = replace(apostrophe,chr(39),chr(180)) End Function%> to use: StrSql = &quot;insert into Table (Field) Values (&quot...
  20. KenKasmar

    Currency. Can somebody help?

    Try this: <% ... while (!cursorW.EOF){ Response.Write(&quot;<tr><td>&quot; + cursorW('WineID') + &quot;</td>&quot;); Response.Write(&quot;<td>&quot; + cursorW('WineName') + &quot;</td>&quot;); Response.Write(&quot;<td>&quot;)...

Part and Inventory Search

Back
Top