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: nimarii
  • Order by date
  1. nimarii

    Error Loading Dataset from xml string: "xml data at root is invalid"

    Hello, I created a user control in c#.net to display google maps. In the event that a location is missing a latitude and longitude, I make a call to the google service, which returns xml. I want to load a dataset with this xml data, but I get an error: "Data at root is invalid. Line 1 position...
  2. nimarii

    How to create a "multi-line" form using repeaters?

    Hello - I'm new to C#, and can create basic webforms. I'm exploring repeaters, and was wondering if it's possible to create a repeater that will: 1. display existing data 2. enable you to add a new record and save 3. display existing data with newly created record 4. enable you to add another...
  3. nimarii

    using request.querystring inside a SELECT CASE

    ahh - you're right DNG, it seems i was forgetting to set the actionmode to "update" at the end of my case "". thanks!!!!
  4. nimarii

    using request.querystring inside a SELECT CASE

    ah, sorry, meant to type "update" as "UPDATE", i have it in caps in my code. sorry! (good catch tho on that one!)
  5. nimarii

    using request.querystring inside a SELECT CASE

    hello - i have a select case set up like so: select case ucase(actionmode) 'first time user loads page CASE "" strExtensionID = Request.QueryString("NoteExtensionId") CASE "update" strExtensionID = Request.QueryString("NoteExtensionId") end select i seem to be able to successfully get a...
  6. nimarii

    creating variable names using a loop

    well its a bit of a mess...i'm trying to find an elegant solution, and i think arrays are probably the way to go. thanks for your help! if you're interested in the full issue, keep reading... i have an application that displays the payment schedule for mortgage notes. sometimes, these notes...
  7. nimarii

    creating variable names using a loop

    sorry for being so muddled... so i should use 2 arrays instead of creating recordsets?
  8. nimarii

    creating variable names using a loop

    well - i think i could use arrays also, but here is what i mean. i need to create recordsets with the following name formats: dim rs0 dim rs1 dim rs2 dim rs3 I need the integer number at the end of the name, so i can reference it using the loop. for example: set rs0 = "select * from table...
  9. nimarii

    creating variable names using a loop

    hello - i need to create a dynamic number of recordsets each time the page loads. i'm trying to do something like this: for eCounter = 0 to ExtensionCounter dim RS[eCounter] set RS[eCounter] = "select * from table where id = eCounter" next what is the syntax for creating the name of the...
  10. nimarii

    javascript function causing asp page to reload??

    does it reload the page though?
  11. nimarii

    calculation is off by $0.01....any ideas?

    wow - thanks Denis. Hm, so I need to change all money typesto decimal, and all float types to decimal as well?
  12. nimarii

    calculation is off by $0.01....any ideas?

    ok, so adding round(@variable, 2) only increased the error. :(
  13. nimarii

    calculation is off by $0.01....any ideas?

    i'm using float and money data types.... i'm sorry, a bit new at this. but how should i go about rounding in the calculation as i go along? do i need to add round(@variable, 2) for every variable in every calculation? thanks thanks thanks!!!
  14. nimarii

    calculation is off by $0.01....any ideas?

    yes, there are quite a few calculations going on, with tons of division operators. how can i specify to not have a fixed number of decimals? also, i am using number values such as "100". would it help to use "100.00000000" instead?
  15. nimarii

    calculation is off by $0.01....any ideas?

    hello, I converted an asp function that generates a mortgage loan schedule to a SQL stored procedure. Everything is working fine, but one of the columns has data that is off by one cent for a few rows. i cant seem to find out how to correct this, or see where the problem is happening. does...
  16. nimarii

    javascript function causing asp page to reload??

    well - i solved the issue by using checkboxes, rather than an image.
  17. nimarii

    javascript function causing asp page to reload??

    i tried the <input type="image">. it doesnt allow for an onClick property. thanks anyway.
  18. nimarii

    javascript function causing asp page to reload??

    i'm currently trying this, let me know what you think: <a href="#" onClick="functionname()"><img src="..."></a> having some problems with it though, error message says: "object doesnt support this property or method" agh!!
  19. nimarii

    javascript function causing asp page to reload??

    i dont think you can use the OnClick property with using "<img name>"....?
  20. nimarii

    javascript function causing asp page to reload??

    hello, i have a list of editable text fields that are displayed dynamically. I need to be able to "disable" each field using either a checkbox or a button. I added a lock image next to each editable field, with an "onclick" property that calls a function to disable the proper field. However...

Part and Inventory Search

Back
Top