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 SkipVought 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. bgreenhouse

    Switching between different Wireless Networks

    Hi There I have a centrino laptop with an intel wireless (built in). I have a wireless network at home, and one at the office. The one at the office uses no network name or security, and uses DHCP, but at home I use static IP and have a network name and a 64bit key for security. I have read...
  2. bgreenhouse

    Kerio and NAA

    Hi There At school I connect through a wireless network, but I have to go to a page and put in my login name and password and the like. In ZoneAlarm, I'd just allow the IP address of the server to come in (it's trying to ping me), but in Kerio (4) I can't make it work. ZoneAlarm's newest...
  3. bgreenhouse

    Adding an event to button.prototype.onRelease

    Hi everyone Here's an easy one I think. I want to add an action to every button I ever use. It's something stupid I'm just playing with where I'm making a bubble appear randomly on the screen and float up everytime someone hits a button. I have the code for it all worked out and in it's own...
  4. bgreenhouse

    Text only email

    Actually...it doesn't seem to work...I've sent it to Netscape and back to Outlook, and each time it displays (perfectly) as HTML...I'll have to look into this. B
  5. bgreenhouse

    Text only email

    Great idea! Thanks! Ben
  6. bgreenhouse

    Text only email

    Hi tviman It can be done that way, but most email clients that read HTML can read a Multipart/MIME message and ignore the text only part. Viewers whose clients can't read HTML only recognize the text (or at least see it at the top of their screen if you've done it right). Regardless - I still...
  7. bgreenhouse

    Text only email

    Hi Folks I'm not sure if this is the right forum to ask in, but I thought I'd try. I've made an email newsletter that is a multipart MIME email. I want to test out how it looks on a text only email client, but can't figure out how to configure any of the ones I have (Outlook and Netscape...
  8. bgreenhouse

    What's wrong with this simple page?

    NN 6.0 does. Check out http://www.alistapart.com/index.html. Thanks for the effort though! B
  9. bgreenhouse

    What's wrong with this simple page?

    Hi folks I'm having a terrible problem where I can't get Netscape 6.0 to display this page the way I want it to. IE 5 or 6 displays it fine. At issue is the main content "box". I want it to be 100% of the page. IE does this fine. NN6 stops it at some apparently predetermined...
  10. bgreenhouse

    Netscape 6's Box Implementation

    No one huh? Well, I just realized that it wasn't the content_table class you needed, it was the mainsection code... #mainsection { padding: 3px; background-color: #ffffff; border: 1px #000000 solid; left: 10px; position: absolute; top: 134px; width: 700px; z-index: 1; height: 100%;
  11. bgreenhouse

    SQL Transactions from ASP

    For anyone searching for the answer, I've found it...Use your connection object (dbObj in this example), and use the following commands: dbObj.BeginTrans dbobj.RollbackTrans dbobj.CommitTrans It's pretty easy... B
  12. bgreenhouse

    Reg Exp or parsing CSV ->db

    Hey - you don't see me posting it off the top of my head, do you ;o) ? I'll take a look and see what I can come up with in the morning. B
  13. bgreenhouse

    Reg Exp or parsing CSV ->db

    I'm thinking out loud here...You're using VBScript, right... How about taking the substrings between the quotation marks, replacing all the commas within them with some other type of marker (I don't know, make one up like &comm;), then putting them back in place into the csv file before...
  14. bgreenhouse

    Dynamic Display

    How about something like... <%Do While not rs.eof%> <tr> <td> <% Response.Write(&quot;<INPUT TYPE='TEXT' SIZE='80' NAME='txtItemDesc' VALUE='&quot; & rs(&quot;ItemDesc&quot;) & &quot;' >&quot;) %> </td> <td> <% Response.Write(&quot;<INPUT...
  15. bgreenhouse

    Reg Exp or parsing CSV -&gt;db

    As it seems you have some flexibility, couldn't you just delimit all the fields with ,&quot; and &quot;,? Maybe I'm missing something... B
  16. bgreenhouse

    SQL Transactions from ASP

    Hi Folks I've read a bit about MTS - but I'm not sure it applies to what I want to do. I simply want to be able to commit, begin and rollback SQL transactions (on an access database) from an ASP page. So I've tried what seems obvious - passing it as I would any other SQL statement...
  17. bgreenhouse

    How do I do a find operation until it doesn't find it anymore

    Thanks Justin That seems to work for me. Want to explain what you did? Ben
  18. bgreenhouse

    How do I do a find operation until it doesn't find it anymore

    Hi kphu Sorry, I should have been more explicit...I'm working in Word, not Excel. Here's the actual code I have written (that works, but I need to loop through it)... Sub unformat(opentag, closetag) Dim len_ot As Integer Dim len_ct As Integer Dim len_select As Integer len_ot = Len(opentag)...
  19. bgreenhouse

    How do I do a find operation until it doesn't find it anymore

    Hi There I'm essentially coding a find and replace method, but I don't want to use the replace function...Let me explain. I want to find phrases that fit a certain wildcard description, select them, do something to them and then put the resulting string back where they were. This works great...
  20. bgreenhouse

    Netscape 6's Box Implementation

    SUre... <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;> <html> <head> <title>TITLE HERE</title> <link href=&quot;styleNN.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;> <style type=&quot;text/css&quot;> @import url(Style.css); /*IE and NN6x...

Part and Inventory Search

Back
Top