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

    the : in javascript/json

    i've got a function that looks like this, but I really only have a vague understanding what it's doing. I think that it is JSON, but can somebody either explain to me what is happening in javascript formatted like this or point me towards a useful tutorial that I can read - i've read some...
  2. NuJoizey

    IE appends garbage to url

    this problem only exists in IE and no other browser as far as I can determine: the href in the html points has this: http://www.mysite.com/mypage.aspx?id=1122 but then in IE when the user clicks it, somehow the resulting url is...
  3. NuJoizey

    dynamic html table in xslt

    I'm sure this problem has been worked out many times before, but my experience with XSLT apparently isn't good enough to allow me to see how to do the following: say the XML looks something like this: <events> <event> <name>concert</name> <date>today</date> <time></time>...
  4. NuJoizey

    Toggling background image with JavaScript

    why the heck doesn't this code work? if(window.document.getElementById(elm2).style.backgroundImage=='url(images/expand_arrow.png)' || window.document.getElementById(elm2).style.backgroundImage=='') {...
  5. NuJoizey

    have iso - want to create CD

    I have an ISO copy of windows XP Pro that I've downloaded from my MSDN library subscription. I have a machine where I want to blow out the existing operating system and install XP Pro. It kind of seems ignorant of me to ask, because it seems like it should be pretty easy, but how do I do...
  6. NuJoizey

    the best way to return an integer

    If I have a value stored in SQL Server as an integer, say NumOfUnits sold, and I want to return that value based on an ID field to use in the UI of my ASP.NET app, what is the best way to do this? Currently, I am writing an Scalar valued UDF like this in SQL Server: CREATE FUNCTION...
  7. NuJoizey

    Certificate errors

    I'm running IE8 on windows server 2003 just as a test machine, but whenever I try to browse the internet or log into a secure site I get a constant "certifcate error navigation blocked" window which is not only annoying but it seems to disable the features of the site I am trying to use. I wish...
  8. NuJoizey

    wizard ctrl within modalpopup: how to access the &quot;finish&quot; button?

    I have an asp.net wizard control which opens in a modal popup. It works nicely for the most part. User clicks a link, and the user can click thru wizard while the background is disabled. However now I find I have the need to disable the Finish button on the last page of the wizard upon a...
  9. NuJoizey

    Try Catch question

    Can I do something like: Protected Sub myDropdown_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Try UpdateRemoteDB() SendAnAlertMailThatItWorked() Catch ex As Exception DisplayMessageThatUpdateRemoteDBFailed() SendEmailToAdminWithErrorDetail() End...
  10. NuJoizey

    Excel VBA: Cancel a checkbox_change event?

    A user mistakenly clicks a checkbox from False to True. I want a message box to pop up saying "Are you sure?" If user responds "NO" then I want to exit out of the routine and set the checkbox back to False. But the problem is that when I do this, the event is re-fired and AddCols() procedure...
  11. NuJoizey

    DB design question

    Hello SQL Pros. I'm not sure this is the right forum to post this in, but I'll do so, and if I am mistaken, I apologize in advance... I'm looking for some feedback and some discussion from other DB pros about the viability of a DB design I came up with. The goal is to create the DB back end...
  12. NuJoizey

    job to run daily excluding weekends?

    I have a stored procudure that I want to run every day except for Saturdays and Sundays. It sends out reminder emails based on the results of a query. In the job scheduler for SQL Server2008, however there seems to be no options to configure this beyond just daily. So then, am I correct in...
  13. NuJoizey

    sp_send_dbmail EXECUTE permissions

    I've spent some time googling, but I just can't seem to find or derive a straightforward answer to what I believe is a straightforward question. I have an aspx page. On that page is a dropdown box. If the user selects choice ABC, then it fires off a stored procedure (USP) that calls EXECUTE...
  14. NuJoizey

    manipulating non-normalized table data

    Hi, I made the below post in the MSSQL forum by accident, but I am wondering how best to handle the same situation in PL SQL in which I am a novice. http://www.tek-tips.com/viewthread.cfm?qid=1551264&page=1 Any help/hints/resources would be greatly appreciated.
  15. NuJoizey

    Manipulating non-normalized table data

    Say I have data in tblMovie like so: MovieTitle Genre Director -------------------- ------ -------- Sleepless In Seattle Comedy Jones Sleepless In Seattle Romance Jones Die Hard2 Action Smith When Harry Met Sally Romance...
  16. NuJoizey

    Basic Noob questions: Saxon 9 and XQuery

    I'm so green at XML that it isn't funny. Anyway, I'm trying to work through an XQuery book example. I've downloaded and installed Saxon9. I used it successfully to do XPath transformations so far. I am running the Java version on W2k3 Server from DOS command line. The problem is that the...
  17. NuJoizey

    grouping levels without using Reporting Services

    I'm pretty sure the answer to my question is either "No" you can't do that, or "well, it is possible, but why would you want to because reporting services does it", but I'll ask anyway. Using plain TSQL, is there a way to return a grouped recordset without the aggregation, that would look...
  18. NuJoizey

    translating composite attributes from an ERD

    OK refresh my memory.... If I have an ERD showing a composite attribute belonging to the entity "Person", where the composite attribute "Name" consists of two atomic attributes "FirstName" and "LastName" How does this translate into table structure...or...does it even translate into table...
  19. NuJoizey

    Preview affected records?

    I used to do a lot of MS Access development, and there was a neat feature that allowed you to view the recordset that was to be affected by a DELETE or UPDATE statement before you actually executed it. This was handy, because it allowed you to make sure you weren't about to mangle the wrong set...
  20. NuJoizey

    An asp.net price quoting app patterened after excel spreadsheet

    My company has a rather complex one page spreadsheet that they use for price quoting. The sheet is about 15 columns wide and 90 rows long, and it takes roughly 100 inputs to do its calculation. 100 may seem like a lot, but that is just the nature of the business. It calculates an annual price...

Part and Inventory Search

Back
Top