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 bkrike 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
  • Content: Threads
  • 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

    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...
  4. 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...
  5. 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?
  6. 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.
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. puterdude

    Document.referrer questions

    I'm trying to do &quot;a little&quot; site protection. I have this code on a page which I only want accessed from a page on my site. I want the javascript to check that it came from there. If it did load the page, if it didn't, go to an alternate page. I am coming from the correct page and it...
  13. puterdude

    Help Newbie understand Listboxes

    Hi, This may be a dumb question, but I'm having trouble understanding the behavior of listboxes. I have a list of say 3 items: Bananas Apples Grapes I wish to allow mutliple selections and I can do that no problem. I set the values for Bananas at B...
  14. puterdude

    List menu multiple values, redisplaying as chosen

    Hi, I have a list/menu field that allows multiple choices when chosen. Should my user wish to edit these choices on an update page, I would like to present the choices they have made by showing the very same list box with the values highlighted as when they made their choices. Possible...
  15. puterdude

    checkbox inserts ok, but doesnt show on update page

    Hi, I'm using checkboxes. When I click the checkbox, and hit submit, it correctly stores the value &quot;Y&quot; to the access database table. When I go back to the record on an update asp page, the value is not checked, though the underlying value in the table is &quot;Y&quot;. I'm sure...
  16. puterdude

    auto submit page possible?

    Hi, This may sound stupid, but what the heck. I have an asp page that inserts a record into one file. Because it creates a key (autoincrement field), I need that key to keep another table in sync. Since the key doesn't exist until it is commited, I cant do both at once. question: Can I...
  17. puterdude

    passing 2 values in URL ?

    Hi, Can I pass 2 values in the url? ie. www.mypage.com/myasppage.asp?Qid=1234?email=me@myhost.com Is this possible and what is the correct syntax? Thank you. Puterdude
  18. puterdude

    Update Form, loading field with session variable

    Hi, I would like to load a field with a session variable on a form that updates a record. I have the field on the form as an input field. <%RS_update.field(&quot;QID&quot;) = Session(&quot;Sqid&quot;)%> I am not sure where to put this or if it will work. When I try it I get an error message...
  19. puterdude

    Lookup prior to Update - submit?

    Hi, I have a form with 15 fields on it. They are validated with javascript for numeric values only which is okay. I would like to be able to check the values against a table to make sure they are valid prior to them being accepted. The record is already created in a previous screen, with...
  20. puterdude

    asp/ultradev Insert 2 tables access db

    Hi, I'm trying to insert a record into a table from a form. That works fine. Problem is I would like to simultaneously insert a record into another table using hidden fields and only 1 submit button for both. I dont even want the user to know he is creating the second record. Not being...

Part and Inventory Search

Back
Top