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!

Search results for query: *

  • Users: srudin
  • Content: Threads
  • Order by date
  1. srudin

    Namespaces on the wrong node

    i'm creating an XmlDocument using c#. the code looks about like this: myXmlElement = XmlDocument.CreateElement("prefix", "name", "uri"); ParentElement.AppendChild(myXmlElement); the xml structure is supposed to look about like this: <root xmlns:ns1="uri1" xmlns:ns2="uri2" xmlns:ns3="uri3">...
  2. srudin

    One statement for result &amp; count(result)

    i need to show a datagrid in a webapp that allows paging & sorting. it's supposed to show only 10 records at a time and the total number of records in the footer. i'm using MS SQL Server 2005. to accomplish that i made a complex select-statement that 1. finds all the records matching some...
  3. srudin

    ShadowCopy-Problem

    hi i have a web application and i need to dynamically load assemblies into that application. in order to not have my assemblies locked i enabled the shadowcopy-feature (or more precisely: i added the path of the assemblies to the shadowcopypath since shadowcopying is by default enabled for...
  4. srudin

    Setup a custom EventLog

    hi i created a setup project for a windowsservice which contains a projectinstaller class. to that class i added an eventloginstaller to setup my custom eventlog (this is all following the msdn instructions). the problem i'm encountering is that the serviceinstaller sets up a (standard) eventlog...
  5. srudin

    Encoding problem

    i understand that a byte array containing information encoded in unicode can (obviously!) not be decoded using, for example, ascii; the result is data "garbage". what i don't understand is why even a temporary conversion fails, or in other words, why the data "garbage" can not be reconverted...
  6. srudin

    Access Problem

    hi some fool put the ntfs-security on the webserver to everyone/full access for ALL directories (!). i changed that back to administrators/full, system/full and users/read. i then set everyone/full to c-root (only) and the temp folder, and everyone/read to all directories inside the wwwroot...
  7. srudin

    Tooltips: SPAN title and new lines?

    hi i usually make tooltips like this: <SPAN title=&quot;Tooltip&quot;>some text</SPAN> that works fine; but now i got a tooltip where i would like to insert a new line, for example: <SPAN title=&quot;Tooltip1<BR>Tooltip2&quot;>some text</SPAN> Unfortunately that doesn't work, since Tags are...
  8. srudin

    Thanks!

    Hi just wanted to say 'thank you' to all who helped me out when i had a problem developing my flash-application. it's finished (for now) and here's the link to it: www.tungiasis.net the site is about a cd i recently released with a friend. its in german but you should get the idea anyway. btw...
  9. srudin

    LoadVars.sendAndLoad

    hi what kind of syntax has to be used to load vars from an asp-page with the method myLoadVars.sendAndLoad()? i thought its something like response.write(&quot;var1=abc&var2=def&quot;) but when sending this response i get an error (url not found). when sending an entire html-page there's no...
  10. srudin

    ...comments pls!

    I just put a trial version of a new homepage online - entirely built with Flash. I'd appreciate any comments! Let me note a few things first: 1. The site is entirely in German - but I guess you should get along anyway. 2. Don't miss the Downloads-Section! 3. You can place your comments right...
  11. srudin

    fscommand

    Hi there I tried to use fscommand(&quot;showmenu&quot;, &quot;false&quot;); worked with the projector, but not with the browser-plugin (what is clear since at the browser-plugin there's the javascript-function called). But how can I disable the menu in the browser-plugin then? Thanx [sadeyes]sr
  12. srudin

    Cursor

    Hi there I want to replace the standard mouse-cursor with my own one. Yes, I do know about Mouse.hide() and _root._xmouse and so on. But Mouse.hide() doesn't seem to work over textboxes and links; because out of nothing theres this ][ when moving over a textbox and a little hand when moving...
  13. srudin

    Refreshing XML

    Hi there I got a flash-site using XML; the XML is beeing prepared by an ASP-page. That works pretty good so far and looks something like: myXML = new XML; myXML.load(&quot;...file.asp&quot;); The problem is that the second time I load the XML flash uses the values from the cache and doesn't...
  14. srudin

    Xml_onLoad

    Hi when coding inside the Xml.onLoad-function I don't seem to have access to the 'this'-object... here's an example: ----- oXml.onLoad = abc(); function abc(success){ trace(eval(this)); } ----- the trace-function is returning an empty string... am i doing something wrong...?! thanks for...
  15. srudin

    Cookies for Flash?

    Hi What's the easiest way to store user-defined settings such as name or window-size in Flash CLIENT-SIDE (without using a server)? On a simple html-site you could use cookies for that, is there something similar for Flash? Thanks for any ideas
  16. srudin

    Windows in Flash

    Hi I did some window-like menus in flash but I got one problem: The elements behind the window are still active... Let's say there's a button: If you drag my window over the button and click on the window, the action of the button behind the window is executed as well... Is there a simple way of...
  17. srudin

    Selecting dynamic Html-Input

    Hi i got a textfield set to &quot;input&quot; and marked as html; how can i get the REAL text out (without the html-tags)? the selection-object counts correctly, but seems to deliver only the indexes, not the content... thanks for suggestions

Part and Inventory Search

Back
Top