Search:

Type: Posts; User: DeadEyes

Page 1 of 13 1 2 3 4

Search: Search took 0.80 seconds.

  1. Re: Change Control Returned By .ActiveControl

    Thanks jcis. I've decided to bite the bullet and do away with the usercontrol. I figure that if I've hit this problem now then there are bound to be other issues and there is nothing worse than...
  2. Change Control Returned By .ActiveControl

    Hi All,

    I have a form which contains a usercontrol. That usercontrol contains a number of textboxes. When the form calls Me.ActiveControl it returns an instance of the usercontrol. Is it possible...
  3. Replies
    2
    Views
    2,653

    Re: Javascript Split - not splitting

    It does the problem is how your testing it.
    s.split returns an array alerting the array returns a comma seperated string.
    Instead alert(s[0])
  4. Replies
    12
    Views
    1,362

    Re: What would you do different?

    Load time for the home page has improved, but a couple of things struck me.
    With the menu across the top, The images load with a big sqaure around them but once the page finishes loading the alpha...
  5. Replies
    12
    Views
    1,362

    Re: What would you do different?

    They'd be happy with lower res images if people actually used the site, I gave up waiting for it to load. I am impatient but watching the main photo slowly load inch by inch would probably put most...
  6. Replies
    6
    Views
    600

    Re: Web Development Project

    I don't have any ideas for you but a one thing struck me from reading your post.
    Why would you write a web based app, make it Windows only and then rewrite it to be platform independant if popular....
  7. Replies
    38
    Views
    1,451

    Re: Al Gore wins Nobel prize

    Therein lies the problem if countries won't do anything because it might adversly affect their economy, then no one will do anything. At some point in the future popular opinion might tip the balance...
  8. Replies
    38
    Views
    1,451

    Re: Al Gore wins Nobel prize

    Am I to infer from what you say that maybe his PR people dumbed him down in order to appeal to Joe Six Pack?
  9. Replies
    38
    Views
    1,451

    Re: Al Gore wins Nobel prize

    Well I'm not totally au fait with the American political system, I tought the vice president would have some clout. The Kyoto thing went on for a long time Gore was in Japan in 97 and said America...
  10. Replies
    38
    Views
    1,451

    Re: Al Gore wins Nobel prize

    Basically the judge said some of the things in the film were alarmist or was contrary to the general consensus among the mainstream scientific community. Teachers have to point these bits out to...
  11. Replies
    38
    Views
    1,451

    Re: Al Gore wins Nobel prize

    To me this makes a joke of the "peace" prize. Wasn't Gore the Vice President when America refused to sign up to Koyto? The guy makes one mockumentry and thats good enough to be a noble prize winner,...
  12. Replies
    7
    Views
    616

    Re: Radiohead - In Rainbows

    Nine Inch Nails are jumping on the band wagon they're going to do the same thing next year.
  13. Re: how to invoke the dll files in the asp application

    AFAIK It's done the same as any other dll
    Server.createObject("ADODB.Connection")

    Edit:
    Replace ADODB.Connection with whatever your classes are.
  14. Replies
    8
    Views
    730

    Re: Anyone used ruby on rails????

    I had a brief fling with RoR but I never got into any great depth. For a small project starting from scratch (including the DB) it would appear to be great.
    There is a migration feature that allows...
  15. Thread: HTML virgin

    by DeadEyes
    Replies
    5
    Views
    848

    Re: HTML virgin

    So basically you have two urls one your website which maybe has an ugly url that isn't easy to remember and the other is your domain name which is easy to remember.

    I think this is called domain...
  16. Replies
    3
    Views
    731

    Re: In window popup

    or a DIV with its style poistion set to float.
  17. Replies
    11
    Views
    809

    Re: Chinese Military hacking

    http://news.bbc.co.uk/1/hi/technology/5156136.stm
    Well it's illegal for British citizens to hack American Military networks so I assume it's also illegal for Americans to hack other nations defence...
  18. Replies
    1
    Views
    431

    Re: Read Only Drop Down

    As part of the submit process you could re-enable the control.
    [Edit]
    Actually instead of disabled, try setting it to readonly. Also check out the W3C HTML spec. Successful controls
  19. Replies
    21
    Views
    1,101

    Re: Visiting An Irish Pub

    And if you were aiming it at me those points still apply.
  20. Replies
    21
    Views
    1,101

    Re: Visiting An Irish Pub

    It's funny in the sense that someone got commisioned to make a comedy and this is what they came up with. You've got to laugh otherwise you'd cry at the injustice of having to pay a licence fee for...
  21. Replies
    5
    Views
    1,008

    Re: Close pop up window if open

    winH would be a global variable on the page that opens the popup, so once the popup is open and while it remains open winH should have a value. Unless the main page is reloaded.
  22. Replies
    5
    Views
    1,008

    Re: Close pop up window if open

    window.open returns a handle to the new window so you could do a check
    like


    var winH = null; //global

    //within some function
    if(winH != null && winH.closed!=true){
    //the popup is open...
  23. Replies
    1
    Views
    469

    Re: Connection Object in Session_onStart

    First up you shouldn't use session variables unless you really have to. Having an open connection could lead to "too many open connections" error. Personally I like to open a connection use it and...
  24. Replies
    2
    Views
    490

    Re: Launch IE with certain features

    Thanks for the suggestion but I'd really rather not do that if at all possible. Loading a page to load another page and then closing down the first one seems a bit messy.
  25. Replies
    2
    Views
    490

    Launch IE with certain features

    In a web page you can open a new window and set the features of the new window by adding parameters like "menubar=no,titlebar=no,toolbar=yes".
    Is it possible in VB to ShellExecute a HTML page so...
  26. Replies
    5
    Views
    521

    Re: Help with SQL String

    would this work


    SELECT COUNT(DISTINCT(FIELD1)) FROM TableName
  27. Replies
    4
    Views
    5,108

    Re: css: hover image and text link at same time

    A:link { color: red } /* unvisited links */
    A:visited { color: blue } /* visited links */
    A:hover { color: yellow } /* user hovers */
    A:active { color: lime } /* active links ...
  28. Replies
    5
    Views
    1,825

    Re: How to make a linux thing.

    You might want to take a look at linux from scratch
  29. Re: Datatype type mismatch in query expression.

    What is the data type for the PDate column? If its a date type then shouldn't you use hashes(#) instead of single quotes (' )
  30. Replies
    7
    Views
    556

    Re: The Hindenburg Disaster

    Every time I see that I'm still amazed that around 60 of the 90 or so people on it survived.
  31. Thread: Javascrpt DOM

    by DeadEyes
    Replies
    3
    Views
    699

    Re: Javascrpt DOM

    this should give you a start


    // code for IE
    if (window.ActiveXObject){
    var doc=new ActiveXObject("Microsoft.XMLDOM");
    doc.async="false";
    doc.loadXML(xmltext);
    }// code for Mozilla,...
  32. Replies
    48
    Views
    1,945

    Re: African American President

    Yes I have and I did. People are using the phrase all over the place but no one is explaining what it means. You have used it so I assume you know what it means. So I ask again what is "anit-American...
  33. Replies
    48
    Views
    1,945

    Re: African American President

    According to Wikipedia he was born in Hawaii, so wouldn't that make him a citizen on the technicality that he was born in the United State, or is Hawaii different?
  34. Replies
    48
    Views
    1,945

    Re: African American President

    Totally off topic but what is "anti-american semitism"?
  35. Replies
    2
    Views
    475

    Re: in an aspx.vb file

    try something like this


    <hmtl>
    <head>
    <style>
    SPAN.lineA{color:red}
    SPAN.lineB{color:green}
    SPAN.lineC{color:blue}
    </style>
  36. Re: how to validate three checkboxes?

    Can the customer use more than one method of payment for a single transaction? If not you should really be using radio buttons or a combo box.
  37. Replies
    8
    Views
    548

    Re: Secret to attracting women

    A tangy cherry cig? :eek:
  38. Re: Javascript:tring to parse querystring onfocus

    You should be able to access the parent window and its contents using window.opener
    It doesn't answer your question and may not be the best way but it might be worth a try.
  39. Re: how to validate radiobutton, checkbox n dropdown list?

    In that case cgender is an array so check


    if(cgender[0].checked == false && cgender[1].checked == false){

    }
  40. Re: how create dynamic HTML controls when i get the data's from XML

    Using the MSXML Domdocument there are two ways to approach this.
    1.
    Create a dom document of the xml doc and navigate through it using standard asp to create the page you want.
    2.
    Create an xslt...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width