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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by rravenn

  1. rravenn

    childNodes/getElementsByTagName - XML parsingproblem in Firefox

    Hrrrm, I mean edit it in javascript. or not even edit, just look at it before editing.
  2. rravenn

    childNodes/getElementsByTagName - XML parsingproblem in Firefox

    Hi. I have the following xml in xml element <commands><command oid="2" name="open" clientHandler="openHandler" /><command oid="27" name="padd" server="1"><argument quote="0" oid="26" name="Parent" autocomplete="1" /><argument quote="0" oid="28" name="State" autocomplete="1" /><argument...
  3. rravenn

    waiting in javascript

    Yeah that's the problem ;) So there's no way to add a delay inside a loop?
  4. rravenn

    waiting in javascript

    I need to wait for a specific set of evnets to happen before I do something (it's multiple xmlhttprequests and I need them all to be finished and some processing to take place). Here's how I do it: while (this.resources.find( function(v,i) { return v.state < 2 } )) { alert("test"); } (.find...
  5. rravenn

    architecture question: triggers vs sps

    Hi. I like triggers a lot cause in my view stored procedures have a lot of shortcomings; data consistensy is not guaranteed, there can be many SPs that do the same thing created by unaware developers; they require a lot of permission management and if they are numerous it's pita to answer...
  6. rravenn

    lower()/upper() and various languages

    I have nvarchar column in sql server 2005 and it can contain data in English, Turkish or Russian. Supposing that I know the language of any given string beforehand, how do I make lower/upper convert "i" in Turkish and English correctly? I need it to change between dotless capital I and small...
  7. rravenn

    stupid question: distinct and sort

    MS SQL 2000. I have the following query SELECT DISTINCT TOP 100 Word,Trans,WordID,IsExact,SetN,IsByWord,IsByPart FROM ( SELECT Name as Word , dbo.wa_getTranslationList(WordID) as Trans , WordID , CASE WHEN Name = @Word THEN 1 ELSE 0 END AS IsExact , CASE WHEN Name LIKE @Word + '%' THEN 1...
  8. rravenn

    clear selecton in firefox?

    How do I clear page selection in Firefox? E.g. produce the same effect as document.seection.clear() in IE
  9. rravenn

    how do I disable auto-adding styles?

    There's a new feature in WOrd 2002/2003, styles, this drow down list to the left with two crossing A-s where you can select text formatting from a defined set. I need a document that has headers and text, so I deleted all the styles and created two new. However when I paste text into the...
  10. rravenn

    2.0 GridView

    I got to playing with ASP.NET 2.0. So I have the following code: <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="QuestionID" OnRowCancelingEdit="GridView1_RowCancelingEdit" OnRowEditing="GridView1_RowEditing" OnRowUpdating="GridView1_RowUpdating"> <Columns>...
  11. rravenn

    disabled fields

    In fact I settled with readonly fields ;)
  12. rravenn

    disabled fields

    ...nevermind
  13. rravenn

    disabled fields

    <input type="text" disabled .... doesn't get into the $_POST archive. Why's that? Is there any way to get around this?
  14. rravenn

    feeding WordHTML to IE

    Er.... application/msword doctype ofc.
  15. rravenn

    feeding WordHTML to IE

    I have a web form that inserts stuff into HTML generated from MS Word and feeds it to the client with "" doctype. Result is the file being opened in MS Word exactly as it was originally created on the client machine. However there's a problem... on some machines (1 of 30 or about), it won't...

Part and Inventory Search

Back
Top