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!

Recent content by QuantumDoja

  1. QuantumDoja

    which directory to point to??

    Will this affect my search engine rankings? as a redirect to another page? Regards www.demonasp.co.uk
  2. 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...
  3. QuantumDoja

    Run an exe and close after complete

    hmmm...good idea, but it doesnt close the dos promt! www.demonasp.co.uk
  4. 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
  5. QuantumDoja

    Saving binary data

    thank you, I just made a blank text file and saved it...it was 0 bytes/0 kb, I put a single character in the file, nows its 1 byte/4kb. www.demonasp.co.uk
  6. 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
  7. QuantumDoja

    Binded Datalist produces no html, but output is fine.

    I think ive solved it, asp.net only renders what is on the page, therefore the datalist contains no data the first time the page loads, therefore does not render it, when i click search, the datalist is populated....very strange.. www.demonasp.co.uk
  8. QuantumDoja

    Binded Datalist produces no html, but output is fine.

    I promise, it is not there. www.demonasp.co.uk
  9. 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
  10. QuantumDoja

    Removing all clips from the stage

    try something like: var i:MovieClip; for each i in _root removeMovieClip(i) next www.demonasp.co.uk
  11. QuantumDoja

    problem with application deployment

    Is it possible that the other machine does not have access to the database that you are pulling data from? www.demonasp.co.uk
  12. 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...
  13. QuantumDoja

    ASP & Excel Hyperlinks

    hmmmm....why not do something like if instr(mycell,"http://") > 0 then 'hyperlink exists end if www.demonasp.co.uk
  14. QuantumDoja

    Help compiling dll file using vbc.exe (web services)

    Hi, this wont really help, but compiling the web service will not make it any faster. www.demonasp.co.uk
  15. QuantumDoja

    Recursive function to array

    Function getCategory(ByVal uid As Integer) As Integer Dim oConn As SqlConnection Dim oComm As SqlCommand Dim ParentID As Integer Dim ParentLevel As Integer 'get parent id oConn = New...

Part and Inventory Search

Back
Top