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: *

  • Users: puterdude
  • Order by date
  1. puterdude

    Importing .iaf files Outlook 2000

    Hi, I'm transferring my Outlook 2000 accounts from one machine to another. I have exported each account to an .iaf account. When I try to import the file into the other Outlook program I get an error (a problem occurred) that's really all it says. I don't see any other type of export...
  2. puterdude

    Strange Hyperlink with conditional if then else

    Hi, I had some code generated by ultradev and I'm trying to put it inside a conditional statement. Because it has some asp brackets within it, I can't seem to get it to work. This is the code: <A HREF=&quot;allrec.asp?<%= MM_keepNone & MM_joinChar(MM_keepNone) & &quot;Qid2=&quot; &...
  3. puterdude

    Change Cell Color, Blink based on If then condition

    Paul, Thanks. I can get the font to change colors. I can't get it to blink (in IE). I also cant get the background to change color. It comes out in text code on my form, rather than asp. I did put it in brackets <% %> but still, it's weird. I'll keep messing with it.
  4. puterdude

    Change Cell Color, Blink based on If then condition

    Hi, Working with if afield = &quot;1&quot; then response.write(&quot;<FONT = 'RED'>Hello</Font>&quot;) end if This works to change the font to red if afield = &quot;1&quot; Is there a way to change the cell background color as easily? I tried bold <b> </b> and that worked too, but I...
  5. puterdude

    Checkbox default as checked problem

    Hi, I have a checkbox. Woo! When I open the page it defaults to checked. When I submit the page (though checked) the value stored is still &quot;N&quot;. This is an access database. When I uncheck it and then check it again, it stores it correctly. I'm missing something here, as usual. Any...
  6. puterdude

    Can I store an array to a sesson variable?

    Hi, Dumb question probably, but is it possible to store an array of items to a session variable so I can compare the items from screen to screen?
  7. puterdude

    putting &quot; in output text file

    Hi, Wondering how to put &quot; in an output text file. writeline(&quot;&quot;&quot;) doesnt work, so there must be another way. I'm trying to get delimited text output ie. &quot;field&quot;,&quot;field2&quot; etc. Thanks.
  8. puterdude

    ADODB.Field error '800aObcd'

    Thanks to all. Boy don't I feel stupid. I didn't know that session variables were cookies store on the user machine, I thought they were stored on the server until the end of the session. Sigh... Well, if I'm going to use cookies anyway, I may as well just set one and get on with it. WHY...
  9. puterdude

    ADODB.Field error '800aObcd'

    It was a session variable I was using to store the key to the record. I have extended the timeout period using session.timeout = 60. I'm hoping that will prevent too much trouble. I guess I could use a cookie but if someone has their browser refusing cookies, then that would be bad. Do you...
  10. puterdude

    ADODB.Field error '800aObcd'

    Yes, that is what I was thinking. Perhaps, a session variable that is expiring. I'll keep looking. Many thanks.
  11. puterdude

    ADODB.Field error '800aObcd'

    I didn't have the set rs = nothing or set con = nothing. I'll add that to be safe. The text that follows is: Either BOF or EOF is true, or the current record has been deleted. Requested operation requires current record. The error message points to this line in the code...
  12. puterdude

    ADODB.Field error '800aObcd'

    Thank you again. And I agree about the defensiveness (not that I always do it). It's weird to me that it is happening. There is no way for the record to be deleted. Not possible. Also, I can access the record if I log in again. Could this have something to do with my using session...
  13. puterdude

    ADODB.Field error '800aObcd'

    Gerard, Thanks. I didn't know I had to. The record set shouldnt BE empty though. Basically, it is pointing at a valid record. Then I wait awhile, hit refresh and poof, error.
  14. puterdude

    ADODB.Field error '800aObcd'

    I was wondering if this is normal behavior and if I'm just timing out. I have a web using asp that I'm developing on my local machine using MS Personal Web Server. Everything works (well, usually ;)) but when I let the browser sit for a bit, and then refresh the page, I get the error ADODB.Field...
  15. puterdude

    Listbox in update form shows values at end of list

    I have a listbox. (used ultradev to create it) If I bind it to the field it shows the values in the list box when displayed. g is value for grapes, b is value for bananas Displays on web page: ___________________ Select One or More grapes bananas oranges g,b ___________________ I don't want...
  16. puterdude

    Stupid @#$@#$@# listboxes

    I have a listbox. If I bind it to the field it shows the values in the list box when displayed. g is value for grapes, b is value for bananas Displays on web page: ___________________ Select One or More grapes bananas oranges g,b ___________________ I don't want the values to show to my...
  17. puterdude

    Simple? asp question regarding &lt;% %&gt; syntax : is more better?

    Thanks everyone. Really helped. Not sure what you mean about the concatenation. I know what it is, I just don't know what you mean about one long write. I'm using jmail and I have to concantenate to get what I want. Seems to work.
  18. puterdude

    Simple? asp question regarding &lt;% %&gt; syntax : is more better?

    Hi, I'm a newbie. I have multiple lines of asp code: ie. <% if inStr(myvar,&quot;A&quot;) then Response.write(&quot;selected&quot;) End if %> <% if inStr(myvar,&quot;B&quot;) then Response.write(&quot;selected&quot;) End if %> <% if inStr(myvar,&quot;C&quot;) then...
  19. puterdude

    Showing Multiple Selected items as highlighted in listbox

    Hi, I had gotten some help on this previously but I'm still not able to figure it out. I have the following listbox (I abbreviated it for the forum) with all 50 states. I allow for multiple selection. When a user clicks more than one state they are highlighted (if ctrl is down). That works...
  20. puterdude

    Help Newbie understand Listboxes

    Gerard, Only now got back to the listbox coding and I dont now where to put it. The form is an update form in asp. When I show the field Fruit on the form it shows A,C if I selected the first and 3rd items, but the list is not highlighted for those items. The code I entered is: dim cfruit...

Part and Inventory Search

Back
Top