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

    which directory to point to??

    Hi, here is a quick layout of my asp.net directory: ROOT ----BIN ----SITE ----MANAGE ----Web.config What I want to do is when someone types in: www.mysite.com it takes them to the /site directory...but i still want to access the manage directory like this: www.mysite.com/manage How is this...
  2. QuantumDoja

    Run an exe and close after complete

    Hi, I have the following code to run an exe: System.Diagnostics.Process.Start("blah.exe") This opens up a dos promt and runs the program. What I need my program to do next is close the dos promt, I cannot edit "blah.exe"....how could I close it? www.demonasp.co.uk
  3. QuantumDoja

    Saving binary data

    Hi, I want to save the following binary data 00001111000011110000111100000001 It's a 32bit integer, why does it save as 4kb, when it should be well under 1kb??? I need to know what format to save it as. Thanks www.demonasp.co.uk
  4. QuantumDoja

    Binded Datalist produces no html, but output is fine.

    Hi, I have a datalist to which i bind a list of customers, it shows perfectly on the screen, but when i view the html source, the only code shown is that surrounding the datalist, no datalist source is shown.....why is this....what setting have i turned off? www.demonasp.co.uk
  5. QuantumDoja

    button components under mc are still clickable!!

    Hi, I have a movieclip with some button componenets on them, each with click events, when i add another movieclip over the top of these buttons to hide them, if i click where the buttons are, i still get the click events...??? how do i make it so that the mouse will not go through to the next...
  6. QuantumDoja

    Recursive function to array

    Hi, I have a recursive function that takes a categoryid and recurses until its parent categories are all found. e.g Hard Drives | Seagate | ATA I take ATA and recurse until i get seagate and Hard drives, but how do i output all the values into an array, i can print them on screen.....can...
  7. QuantumDoja

    Save file to server from URL

    Hi, If I have a location like: www.mysite.com/myxml.xml how would I go about saving this xml from the url to my server as an xml file??? Thanks www.demonasp.co.uk
  8. QuantumDoja

    Open Image, Crop Image Script

    Hi, I just want to know if it is possible to write a program that opens up a specified image, takes two parameters, x and y and can crop the specified image, and then save it again? Regards Chris www.demonasp.co.uk
  9. QuantumDoja

    Remove attached movie clip [Code Supplied]

    Hi, I have the following function, when called it puts an movie clip on the screen, this attached movie clip has a movieclip on it, that when pressed, should remove the attached movieclip, I can capture the event, but I can remove the clip. here is my code //function to show error mc function...
  10. QuantumDoja

    Actionscript XML Preloader [Code supplied]

    Hi, I have a button, that when pressed, it loads some xml from the server, the problem is, i want to create a pre-loader for it, but i do not know how. I want to show in a dynamic text field, the percent downloading....but am totally stuck. please help. btnLoad.onPress = function():Void {...
  11. QuantumDoja

    createEmptyMovieClip from dynamic movieclip [code supplied]

    Hi, I have a movieclip that is created dynamically with actionscript. I want to then create a empty movieclip on this movieclip to load some more content...here is my code. How can I get it to work? //this doesnt work this["mc"+myId].createEmptyMovieClip("fu" +...
  12. QuantumDoja

    Access Label Component in different MC

    Hi, I have a mc that attaches another movieclip to it, the attached movie clip has a label component on it, how do i access the text of the label from the start mc? my code so far var mc:MovieClip = this.attachMovie("mcTest", "mc", this.getNextHighestDepth()); mc._x = 100; mc._y = 200...
  13. QuantumDoja

    Reading nText with ASP.

    Hi, I am trying to test if a ntext field is empty or not, in my database, the field has some html code in it, when i test the field, it allways comes back as empty...why? here is my code, tmp is : tmp=Results("Description") <% If tmp = "" OR IsNull(tmp) = True OR IsEmpty(tmp) = True then %>...
  14. QuantumDoja

    attachmovie and class

    Hi, I want to attach a movie clip to another movieclip, I can do this fine, what I want to do is, when the movieclip is added, specify a class, like the one below to go with it, this again is fine, but when i keep adding the movieclip, i am unsure of how to add another class, otherwise, it just...
  15. QuantumDoja

    System does not support the specified encoding

    Hi, I have the following XSL, XML and asp code to transform, and all i get is the error: "System does not support the specified encoding" any help is GREATLY appreciated. xml <?xml version="1.0" encoding="UTF-8"?> <Article> <TOC> <Section> <OrderID>1</OrderID>...
  16. QuantumDoja

    System does not support the specified encoding.

    Hi, I have this code: It reads in a dynamic xml and normal xsl stylesheet, but when i transform i get the error: "System does not support the specified encoding." Any ideas? <% 'Response.ContentType = "text/xml" 'Response.Expires = 0 'loading an article from the database. Dim ID ID =...
  17. QuantumDoja

    Load XML in Mozilla

    Hi, I have some code that is supposed to load some xml in either IE or mozilla and count how many categories there are from an xml file, it works fine in IE, but in mozilla it returns zero. any ideas? <script language="JavaScript"> var xmlDoc; function importXML(file) { var moz = (typeof...
  18. QuantumDoja

    Update XML Node Value

    Hi, I have XML as follows, how do I access a specifc product where product id = dog and update the quantity to one more? <root> <product> <producid>cat</productid> <quantity>3</quantity> <price>1.99</price> </product> <product> <producid>dog</productid>...
  19. QuantumDoja

    After Databind run code

    Hi, does anyone know how to run code in vbscript after a databind has occured? Thanks www.demonasp.co.uk
  20. QuantumDoja

    DataIsland Readystate Loop

    Hi, I am trying to perform a loop until all data in a dso has been downloaded, one thing is tho, if i remove the MsgBox it loops forever and if i put the message box in, it works fine, but i get an annoying pop-up. Any Ideas?? Here is the code: Found = False Do MsgBox(dsoMyData.Readystate)...

Part and Inventory Search

Back
Top