CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: the_cat

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    253

    VBScript Re: Xcel Sheet Insert

    I'm assuming that column A contains the names of the computers you want to query, and that the first computer listed is on (int)row 3. I am also assuming that you want to determine the o/s of each...
  2. Replies
    3
    Views
    394

    JavaScript Re: java/jquery with excel help

    I'm afraid I know nothing about "yoplet" but if you want to use tablesorter - or virtually any other jQuery table based plug in - you're going to need to convert the Excel data into HTML table based...
  3. CSS Re: Aligning text to the top of an input control

    I couldn't resolve this so I've redone it as a TEXTAREA instead.
  4. CSS [RESOLVED] Aligning text to the top of an input control

    CSS isn't my strong suit but I really can't get this to work and would appreciate some help.
    I am trying to get the text entered into a large <INPUT> text control to be at the top left corner, which...
  5. Replies
    2
    Views
    472

    JavaScript Re: New to programming - Need help

    I think you might need to repost this request to a different forum. What you're asking for is a server-side application, not a client-side script. You've also not specified some fundamentals like...
  6. Replies
    1
    Views
    344

    CSS Re: Selector problem

    I think the problem is the CSS definition as it's not quite right. What you've entered is:
    .division a { color: red; }
    .links a {color: blue;}
    Which is creating a class called division with a...
  7. VBScript Re: Can not connect to SQL Server using WMI Services to Remote Computer

    I don't think it can be a problem with the script you posted as it's an old Scripting Guys script which has been tested and used countless times. The obvious test is to RDP into that server and run...
  8. Replies
    1
    Views
    759

    Re: HTML & Ajax not working as expected

    You have a bug in the line:


    progExe("logon.php?"uname="+uname+"&Passwrd="+passwrd);

    It should probably be something like:


    progExe("logon.php?uname="+uname+"&Passwrd="+passwrd);
  9. VBScript Re: Create folder from text file with VBscript

    Your script looks fine so I suspect the issue is either security (you don't have rights), or more likely nested folder names - so if you are trying to create a folder:...
  10. Replies
    10
    Views
    969

    VBScript Re: HELP! :( Login not working

    I've never created a database that way and I'm not sure that's the right way to do it!
    Why not just use a tool like Microsoft SQL Server Management Studio to connect and create the database, then...
  11. Replies
    10
    Views
    969

    VBScript Re: HELP! :( Login not working

    If you use the example from the link that I sent you then you don't need to call validate onclick.
    Or are you persevering with your code?

    You should probably run a quick check that your ASP /...
  12. Replies
    10
    Views
    969

    VBScript Re: HELP! :( Login not working

    Much as I like ASP, I would suggest looking at .NET as there are some out-of-the-box password controls you can add:...
  13. Replies
    10
    Views
    969

    VBScript Re: HELP! :( Login not working

    Your ASP code is incomplete. You have a SQL query:


    sql = "SELECT password FROM "CarInfo" WHERE EmpID = '"&EmpID&"'

    But you haven't defined what EmpID is, plus you've used single quotes around...
  14. Other Re: Example for a desktop app developed with HTML5

    Not a desktop app but an interesting article on mobile app development with HTML5.
    http://venturebeat.com/2011/08/16/linkedin-node/
    And this one http://maxogden.com/
  15. Thread: Checkboxs

    by the_cat
    Replies
    3
    Views
    835

    JavaScript Re: Checkboxs

    For something like this, it's worth looking at a library like jQuery because it makes it very easy to select related items.
    Here's your application coded in jQuery to only allow checkboxes on the...
  16. Thread: Checkboxs

    by the_cat
    Replies
    3
    Views
    835

    JavaScript Re: Checkboxs

    Properly speaking, your "checkboxes" for (1,4,7,10,13,14,15,16,17) should be radio buttons which fulfil the function that only one may be selected at any one time. Just make sure they all have the...
  17. Replies
    4
    Views
    1,348

    ASP Re: Loading includes based upon site name

    This isn't as straightforward as I first thought. I tried a little test as follows:



    <html>
    <head>
    <&#37;
    Dim IncludeFile
    If LCase(Request.ServerVariables("SERVER_NAME"))="dev.domain.com" Then...
  18. Replies
    17
    Views
    2,873

    Re: Can't embed image into HTML Email VB5

    If you're using programming to generate this, check out this
    http://support.jodohost.com/archive/index.php?t-7692.html
    You need to provide a "CID" content id reference to the source image and then...
  19. Replies
    17
    Views
    2,873

    Re: Can't embed image into HTML Email VB5

    What PeejAvery has very patiently informed you to do is copy the text generated from the website - the "2000 characters", and paste it into the IMG code he supplied to replace the highlighted text...
  20. Replies
    1
    Views
    2,137

    ASP Re: Error 80040211 9 in 10 times

    When I've used ASP to do emailing I've usually done it this way:

    <code>
    Set cdoConfig = CreateObject("CDO.Configuration")
    With cdoConfig.Fields
    .Item(sch & "sendusing") = 2
    .Item(sch &...
  21. Replies
    8
    Views
    2,881

    JavaScript Re: Adding ALT attribute to images and links

    What you've tried should work, but only if the ID it's associated with is an image, so this code works:

    var button42div="<img id='button42' src='chart.png' />";
    document.write(button42div);...
  22. Replies
    3
    Views
    2,378

    JavaScript Re: Gallery not working in IE9

    You could force IE9 to work in quirks mode, something like this:

    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
  23. Replies
    1
    Views
    970

    Re: Help with setTimeout and others

    I see you've answered this yourself in a different post. The thing with script files is that they are implicitly in one language or another, so a file ending in .JS is pure JavaScript, there's no...
  24. Replies
    10
    Views
    3,594

    VBScript Re: HTML Capturing Enter key press

    This works, although you'll need IE if you want a VBScript version:


    <html>
    <head>
    <title>Test</title>
    <script language=VBScript>
    Sub IsEnter
    If Window.Event.KeyCode = 13 Then
    MsgBox...
  25. Replies
    1
    Views
    717

    Re: Any suggestions?

    Lots of problems there.
    1. You've defined a variable ES which you don't then use anywhere:
    var ES = ""; // literal empty string
    2. You're putting up a prompt asking for what movie you want to see,...
Results 1 to 25 of 69
Page 1 of 3 1 2 3



HTML5 Development Center

Click Here to Expand Forum to Full Width