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

  • Users: nadskram
  • Order by date
  1. nadskram

    error while fetching recordset using stored proc in ASP

    you dont need to open a recordset to get one set rs = db_conn.execute never calls the rs.open method, but you get a recordset i think his issue was he forgot to say SET when he told the command object to execute but i could be wrong
  2. nadskram

    kinda recursive sub proc in proc

    so i am currently suffering form 'make-things-hard-for-me-itis' to which there is no cure i could just loop and fill the recordset
  3. nadskram

    kinda recursive sub proc in proc

    i havent used stored procs in a while i have a temp table to give me my results and i am able to return 1 set of data but what i want to happen is to traverse up my data tree lets say you have locations like country, state, county, city, area where states have a parent of the country, counties...
  4. nadskram

    usb mass storage

    does windows 2000 server support usb mass storage? i am trying to get a camera to work and i am having difficulty
  5. nadskram

    Inserting form values into Access Database

    you need to turn that page cannot be displayed error off you do that by going in your browser, tools, advanced and there is an option for show friendly http error message make sure that is UNCHECKED then the browser will have more specific error messages for you
  6. nadskram

    how do you control paging

    the first method posted on that site is the same as my number 1, kinda it retrieves all the records and then does a recordset.move to get to the first record is that what you do veep? the second one is definetly more in depth using a stored proc to only get the ones you want anyone else have...
  7. nadskram

    how do you control paging

    i am just curious of industry standards, like there is such a thing but how do you limit the results shown on a page the way i see it, there are 3 approaches 1. select all and just show the range through looping and begin/end values, i.e show records 11 - 20 2. set page size and page on...
  8. nadskram

    projector/monitor

    its a dell dimension with an ati video card somehow i got it to work went to display properties , advanced and there are 3 box like things for monitor, television and something( i am not in front of it right now) so i ended up having 2 turned on and it partially works except the entire screen...
  9. nadskram

    hidden fields in select

    oohhhh yyyeeaaahhhhh thanks good idea
  10. nadskram

    hidden fields in select

    i am actually doing this with asp but i think its a weird html thing i am looping through a recordset and adding options in a select box as i add an option i want to also add a hidden form field so i can keep track of whos in my original select list but when i add the hidden INSIDE the select...
  11. nadskram

    projector/monitor

    i have a projector and a dell laptop the laptop has a vga output, and the projector has a video inoput sounds good right except for the projector to work, i need to enable dual monitors, and the projector is a second monitor, not the screen i am looking at how do i get the projector to see what...
  12. nadskram

    quality ide text editor

    notepad isnt a quality text editor there is no functionality at all for any langauge and the tabs are too big but good try
  13. nadskram

    quality ide text editor

    i am new to .net and was wondering if there are any free quality text editors. i have inter dev, and it doesnt really like saving an asp file as an aspx file, and using it as a text file isnt really exciting either figured i would post here before downloading random editors thanks
  14. nadskram

    maintain line breaks

    i want to maintain line breaks for a textarea. i am using access database and asp. problem is text entered like this: hello world! hello world again! looks like this on output: hello world!hello world again! what do you think is the best solution for solving this?
  15. nadskram

    using specific server

    thats right you say server,createobject("object.thig" [ , specific server ] ) thanks
  16. nadskram

    Query a recordset possibly!

    you can sort the recodset using the sort method sometimes you may have to use the filter method. i often use a global rs, filter, set the bookmark, recurse through records and the reset the filter and bookmark
  17. nadskram

    using specific server

    i am actually doing this in asp we used something like this in vb, and i thought it had something to do with com set myObj = someOtherServer.creatObject("object.thing") something like that, but i cant remember
  18. nadskram

    using specific server

    i remember doing this when i worked for someone else, and now i forget i want to say, create this object using someother server, like one that has com objects or my email server
  19. nadskram

    get timestamp/milliseconds

    a fellow developer and i are comparing code to see who's runs faster, but we need a timestamp to compare with. how can i get to that using asp, NOT .net any suggestions would be great
  20. nadskram

    select case for integers

    cant select handle integer ex grade = 86 select case grade case > 90 ltrGrade = "A" case > 80 ltrGrade = "B" case > 70 ltrGrade = "C" case else ltrGrade = "F" end select this doesnt work for me

Part and Inventory Search

Back
Top