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: daveigh
  • Content: Threads
  • Order by date
  1. daveigh

    RowUpdating doesn't load new values

    Hi guys, I just started coding in c# so please bear with me. I've been trying to use gridview via RowUpdating to update current the current row using this code. Also, I have a DAL file that handles the updating via stored procedure: daBattery daBattery = new daBattery()...
  2. daveigh

    Cannot implicitly convert type 'oUsers' to 'System.Data.DataSet'?

    Sorry if my inquiry seems to simple but I am very much beginning to understand C#. I get this error: Cannot implicitly convert type 'oUsers' to 'System.Data.DataSet' on this chunk of code: public void Populate_DropDownListByTeamID(ref DropDownList dlDropDown, int intTeam_ID, bool...
  3. daveigh

    what am i supposed to do in a .vb file

    i was assigned to create classes for a .net project. where should i start browsing for the best tutorials? i already know the objects & the simple things, just how to create the file... ______________CRYOcoustic_____________
  4. daveigh

    network & user not found

    ok, here's the deal... we were able to access our vss profile & access all the files in sourcesafe database while we were in our office at ohio. after a month, we are now back to our local office, we plan to modify some of the projects we had back at Ohio, and we had everything installed ...
  5. daveigh

    searching for the quotation mark

    i am currently setting up a forum with the feature of quoting a specific reply. my idea is using the InStr function: response.Write InStr(rs("forum_reply_message"), """) thru that i can count the number of characters and show & manipulate it, but i get a "Unterminated string constant" error...
  6. daveigh

    displaying xml date using asp

    ive been tinkering with this code & i cant seem to figure out i get this err: Microsoft VBScript runtime (0x800A01A8) Object required: 'objNodeXML' /gaynewsfeed.asp, line 13 here is my code: XmlFile=Server.MapPath("rssfeed/users.xml") Session.LCID=2057 Set objXML =...
  7. daveigh

    SELECT SUM(pointsrecvd) FROM (SELECT DISTINCT)...

    i have this sql string: SELECT SUM(pointsrecvd) FROM (SELECT DISTINCT userid FROM tblPointSystem) wherein i have to get the sum of column pointsrecvd from distinct userids of table tblPointSystem. But i get this error: Microsoft JET Database Engine (0x80040E10) No value given for one or more...
  8. daveigh

    combine distinct & sum in one sql statement?

    ok guys, i have this list of multiple user id's with their corresponding site points stored in one table. and this is what i have to do: 1) show a list of "distinct" user id's, 2) calculate sum of all the points those distinct USER IDs had 3) And list them ordered by that sum Havent come...
  9. daveigh

    Show online users

    hi guys, im now in process of including a site feature that can show if user is online. I'd like to incorporate this feature so if the user is online, i can simply chat with em. on my online research, im redirected to using global.asa files (which im not quite familiar coz i dont normally...
  10. daveigh

    Microsoft JET Database Engine error '80040e14'

    ok guys, ive visited the ff. faq: http://www.aspfaqs.com/aspfaqs/ShowFAQ.asp?FAQID=81 and it seems that it wasnt able to solve my problem. i get that error with this sql string: sqlnewuser = "INSERT INTO tblinfo (datereg, timereg, firstname, lastname, birthday, birthmonth, birthyear, gender...
  11. daveigh

    select max problem

    hey guys. got some prob here. i'd like to select the max value of field named oid. the problem is when the oid has no value initially, what do i have to do so that i could trap it and create an initial value? here is my current code which wont work, coz the oid field has no value. set toprs...
  12. daveigh

    ActiveX component can't create object: error

    Hi guys, can't seem to make my asp page work here... error: Microsoft VBScript runtime (0x800A01AD) ActiveX component can't create object: 'msxml3.xmlhttp' Note: i have already installed msxml3 SP 5 in my pc few mins. ago, registered the dll and all but it seems to be the problem coz the...
  13. daveigh

    "SELECT permission denied" problem

    but the permissions are complete. typically weird but true. i've checked all the permissions and there should be no problem. here is the line that generates the error: oRs.Open "Select * From Users", Session("CONNECTIONSTRING"), adOpenKeyset,adLockOptimistic where Session("CONNECTIONSTRING")...
  14. daveigh

    image preloader not working

    hi guys! It seems that my preloader is not working. What im doing is: 1) preview an item (the preloader should run on load of this page) here is the script im using: function preloader(imahe1,imahe2,imahe3,imahe4,imahe5) { var i = 0; imageObj = new Image(); pics = new Array()...
  15. daveigh

    Retrieving previous record having filtered values

    Hi guys, im having problems retrieving previous records for a detail page. I have a page: http://dinha/my_detail.asp?uid=70 and i want to show the previous record. I cant use subtraction in order to get the previous record since some of them doesnt fit the filter i made. i get "Either BOF or...
  16. daveigh

    function to call when closing a browser?

    is there a specific function in javascript i can call or create when a user closes a browser? not when it redirects to another page? i used onUnload but it also triggers when i redirect to another page..any feedback? _______________CRYOcoustic_____________
  17. daveigh

    asp page runs every hour w/o using task scheduler?

    Is there a way i can make my ASP page run every hour without using Task Scheduler? Im running my site on a shared server & they do not allow scheduling tasks, unless i purchase a dedicated server costing hundreds of dollars! _______________CRYOcoustic_____________
  18. daveigh

    what does Out of Memory really means?

    hi guys, hope u can help me here...i was using a get method here and would like to parse the result to an array. one of the values in the array has the value of either 'success' or 'failed' and if the result is the latter, ill redirect it to another page. m quite confused what this error means...
  19. daveigh

    adds asp extension whenever i download a zip file

    hi guys, m having problems with my code here. this one is supposed to pass an id querystring which i use to search the path of the file to download on my access database. it was able to get the path the zipped file is saved, but whenever i try to click on the link, it either adds a .asp...
  20. daveigh

    script that gets real time exchange rates?

    do u guys know a site that has as ASP script that gets real-time exchange rates? _______________CRYOcoustic_____________

Part and Inventory Search

Back
Top