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

    got it dudes, gonna try it now =) ______________CRYOcoustic_____________
  6. 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...
  7. 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 =...
  8. daveigh

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

    tnx swamp. one last thing, is there a way I can sort the listed records by the sum of POINTSRECVD? i tried adding "order by" but i got this error: Microsoft JET Database Engine (0x80040E10) No value given for one or more required parameters. really appreciate your help, dude. =)...
  9. 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...
  10. daveigh

    combine distinct & sum in one sql statement?

    tnx Paul. i'll try that out. the previous query strings generate duplicate userids. let u guys know. ______________CRYOcoustic_____________
  11. 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...
  12. daveigh

    Show online users

    i was redirected to this article and so far i find it useful with my requirements: http://www.charon.co.uk/content.aspx?CategoryID=27&ArticleID=39 ______________CRYOcoustic_____________
  13. 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...
  14. daveigh

    Microsoft JET Database Engine error '80040e14'

    thanks sheco. i was able to fix it up. however, i have this problem.. now this error gives me the shakes. ive been trying to retrieve a group id w/c is numeric. i was able to pull it out (by response.write) and i am thinking of using it as a reference to another table that contains records of...
  15. 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...
  16. 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...
  17. daveigh

    ActiveX component can't create object: error

    well i have already tried re-registering it, it wont work.. do u know any site or forum thread that could help me? ______________CRYOcoustic_____________
  18. daveigh

    ActiveX component can't create object: error

    same line error: msxml2.dll (0x800C0005) The system cannot locate the resource specified. ______________CRYOcoustic_____________
  19. daveigh

    ActiveX component can't create object: error

    i found entries: one is under VersionIndependentProgid, and the other one is under Progid, and another one under msxml2.xmlhttp and another under msxml2.xmlhttp.2.6 ______________CRYOcoustic_____________
  20. daveigh

    ActiveX component can't create object: error

    i see. but why then does it still look for msxml3? here is the new error: msxml3.dll (0x800C0005) The system cannot locate the resource specified. same line.. ______________CRYOcoustic_____________

Part and Inventory Search

Back
Top