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 bkrike 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: rravenn
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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
  7. 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...
  8. 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>...
  9. 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?
  10. 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...
  11. rravenn

    hard DOM question - gordian knot of lagging :)

    I created a form for some webapp. It features account numbers that are in and out of some group respectively presented in two listboxes, with js to allow selecting multiple numbers in a listbox and moving them to another e.g. moving accounts in and out of the group. I move item using document...
  12. rravenn

    share session data contents between two aplications

    There are two apps running on differnet servers, both of them in local intranet. Both use the same model for something, making use of Session["variable"] to store some stuff. What I want is to enable keeping the same session data between two apps, e.g. I browse app1, session variables change...
  13. rravenn

    weird error (database not activate or in transition)

    Here's a query that is part of some complex query with unions. SELECT Email,'Mng' as Role FROM resManager INNER JOIN d10task.dbo.UserGroups ug ON resManager.GroupID = ug.GroupID INNER JOIN resRequestResource ON...
  14. rravenn

    weird error (databse doesn't exist)

    Here's a query that is part of some complex query with unions. SELECT Email,'Mng' as Role FROM resManager INNER JOIN d10task.dbo.UserGroups ug ON resManager.GroupID = ug.GroupID INNER JOIN resRequestResource ON resRequestResource.RequestID = @RequestID INNEr JOIN resResource...
  15. rravenn

    IE DOM weirdness - document fragment

    I have the following problem. I had some code that I wrote before, it got XML data from XMLHttPrequest and populated the table with rows. It worked like it should. However, browser was lagging when the table was populated with large quantity of rows so i decided to rewrite it using document...
  16. rravenn

    OO question - settimeout object method?

    Here's the page. In short, I wrote primitive panel sliding script, now i want to incapsulate it into an object. Of course it requires a lot of styling and bugfixes, it's just what I threw in quickly. http://raven.is.rathercute.com/js/aaa.htm the thing that concerns me is the way I call...
  17. rravenn

    date comparison problem in mysql 4.0.2

    I have date comparison problem with mysql... why doesn't the date get in the set? (2nd query returns empty set) mysql> select version(); +------------+ | version() | +------------+ | 4.0.20-log | +------------+ 1 row in set (0.00 sec) mysql> SELECT RecordID FROM Record WHERE...
  18. rravenn

    Javascript working in IE but not in Firefox

    I want to add buttons with characters to the page, creating on-page keyboard for weird-latin letters - ones with cedillas, breves etc. I have the following code: <button type="button" onclick="javascript:addCharacter(this);">&#287;</button> Fucntion is defined in the <head> and is like this...
  19. rravenn

    installation problem

    I try to install newer verison of MySQL from rpm package on Red Hat 6.2 (don't ask why am I using this version; I have very old testbox here and so I am using this version ;) ) I already have MySQL 3.22 installed. I shut down all mysqld proccesses and try to launch rpm -i or rpm -U on the...

Part and Inventory Search

Back
Top