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 TouchToneTommy 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 bclt

  1. bclt

    Word 2003 Macro - Printing to a specific tray

    Here is a macro example: Sub Print(printer_name As string) ActivePrinter = printer_name ' printing process Application.PrintOut FileName:="", Range:=wdPrintAllDocument, Item:= _ wdPrintDocumentContent, Copies:=1, Pages:="", PageType:=wdPrintAllPages, _...
  2. bclt

    convert listboxvalue to double???? VB.NEt

    ElseIf lbxWkid.SelectedValue > 0 Then ... But what do you want to do with the listbox exactly?
  3. bclt

    Listbox Click events???

    :)
  4. bclt

    Listbox Click events???

    tsdragon this is not javascript! ------------ zachlaka, use something like this: Private Sub List1_Click() Select Case List1.ListIndex Case 1 Text1.Text = "blah" ' ... Case 2 ' ... ' ... End Select End Sub
  5. bclt

    Manipulating strings

    As i see the dollar will always exist so: $StingName = "I am worth $80.00"; $ArrayName = explode("$",$StingName); WIth these lines: $ArrayName[0] = "I am worth " $ArrayName[1] = "80.00" And the dollar is dollar. Hope helped you.-bclt
  6. bclt

    Javascript form validation

    No wrong. My post is wrong
  7. bclt

    Javascript form validation

    <br><input type="button" name="submit" onclick="validate('register')" value="submit" > Maybe is that, the single quotes
  8. bclt

    HTML Server controls vs. Web Server controls

    With .NET controls you can do things eazier that using HTML. Use both if you like. As u say it is busy.... Have u ever thought of cashing your page for eg 24 hours? (if data changed once a day use cashing). It is your choice; It might be alot easier if you use .NET controls
  9. bclt

    Installation problem ?

    Hi again, I transfered the files (php script and html page) via ftp to a real server and the script works fine!!! The problem is at my pc; mean that apache do not work properly. Can anyone show me some lines i should change in the file httpd.conf ? Tnx
  10. bclt

    PHP installation

    Make a file named "test.php" and add to it: <? phpinfo() ?> Put this file in: C:\Program Files\Apache Group\Apache\htdocs , and call it: http://localhost/test.php If you see any results then php works.
  11. bclt

    Problem with commas in arrays

    Arr = Split("Your text here","****") The second argument is the delimiter.
  12. bclt

    problem in getting rid of '+' sign in url encoding

    Did not read all but if you want var re to have the plus symbol: var re = "/\+/g";
  13. bclt

    PHP installation

    http://www.php.net http://www.MySQL.com http://www.zend.com PHP is free and open source program. The IIS is in windows cd. Check if this exist "c:\inetpub\wwwroot". If yes then IIS is installed. Also in http://www.microsoft.com you can find a newer version of IIS (grater than 5.1 ?)
  14. bclt

    Textbox validation inside a multipage

    Ouppps sorry i knew it with an other mane the multipage control. This code works fine (to me). If you enter eg "3f" that is not blank and not numeric the Cancel will be true. As you click eg the page2 the textbox looses forus and the event BeforeUpdate fires. But as Cancel is true the focus...

Part and Inventory Search

Back
Top