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 strongm 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: *

  1. kingkeith

    HTML Editing and Viewing

    Cool. Thanks. Keith sk_kdhall@hotmail.com http://khall.cjb.net/
  2. kingkeith

    HTML Editing and Viewing

    Hi. I am trying to write a mail client (like Microsoft Outlook Express) and I would like some help with my compose message screen. I want to have three view modes for the actual message bit - Edit, Edit Source, and Preview (like Outlook has). Only I don't know how to do the edit bit - the...
  3. kingkeith

    Wordwrapping a Text Box

    Thanks very much - you are most helpful! :D I have marked it as a helpful post. ;) Keith sk_kdhall@hotmail.com http://khall.cjb.net/
  4. kingkeith

    Wordwrapping a Text Box

    Hi. Can anyone tell me how to make a text box wordwrap like Notepad does when you enable it? Is there a way to do it? Or do I need an RTF box? If there isn't a way with a normal textbox, can anyone give me some code that works out whether the line length is longer than the width, and if so, add...
  5. kingkeith

    Printing Text

    Hi. Can anyone tell me how to make the printer print plain text? I am writing a replacement for Microsoft's Notepad and I need to be able to print. I will also want to show the page setup dialog and use the settings they set there when printing. Any help would be greatly appricated. Thanks in...
  6. kingkeith

    ASP - Creating a table using SQL with an auto incriment long

    Thanks! :D Keith sk_kdhall@hotmail.com http://khall.cjb.net/
  7. kingkeith

    Computer password program

    If you mean a program that stops you from running certain programs, then it is possible to write one. I have written one called winnanny using visual basic. If you want this then goto http://vbcode.khall.cjb.net/ and click on winnanny. Keith sk_kdhall@hotmail.com http://khall.cjb.net/
  8. kingkeith

    ASP - Creating a table using SQL with an auto incriment long

    Can anyone tell me how to make a table using SQL with a long which is auto incrimented? I am making a guestbook that many people can use and admin, so I create a new table for every person that registers. I want the ID to be a long, and an auto incriment. This will let people admin their...
  9. kingkeith

    Hyperlink Formatting

    And you'll need another ; after the overline if you want to change some thing else. eg. font size. a:hover { COLOR: blue; TEXT-DECORATION: underline overline; FONT-SIZE: 10pt } Keith sk_kdhall@hotmail.com http://khall.cjb.net/
  10. kingkeith

    Hyperlink Formatting

    You may have missed out a semi-colon in your CSS. Try something like: a:hover { COLOR: blue; TEXT-DECORATION: underline overline } If this doesn't work then I'll think of another solution. Hope this helps Keith sk_kdhall@hotmail.com http://khall.cjb.net/
  11. kingkeith

    Change a tables backcolor when the mouse is over/off it

    Thanks, most helpful! Keith sk_kdhall@hotmail.com http://khall.cjb.net/
  12. kingkeith

    Change a tables backcolor when the mouse is over/off it

    Hi. Can anyone tell me how to make a table so that it's background color changes when your mouse is over it. And then change it back again when the mouse is off it. I am going to be using it as a 'box' for my links, which will sit in the middle. ;) Thanks in advance. Keith...
  13. kingkeith

    Usercontrol Caption that updates as you type ;)

    To make a usercontrol's caption update as you type, open the usercontrol object and click on the Tools menu. Then click Procedure Attributes. Then, in the dropdown list, select Caption (or what ever you might have called the property) and click advanced. Then change the Procedure ID to Caption...
  14. kingkeith

    See-thru Tree View

    Hello, could anybody please tell me how to make a tree view see through. (I have a image and a tree view and I want the image to be displayed under the treevieew.) I heard there was an API for doing this. Any help would be greatly appriciated. Thanks. Keith sk_kdhall@hotmail.com...
  15. kingkeith

    restore a window

    To work out if its minimized you can do a if frmName.WindowState = vbMinimized (if you dont have vb 6 then its 1) then frmName.WindowState = vbMaximized (thats 2 - vbNormal is 0) That will change it to maximized, but change it to vbNormal (or 0) to make it restore. Hope this helps Keith...
  16. kingkeith

    error: "No Public UserControl detected."

    No probs, pal. I'm glad I was of some help. ;) Keith sk_kdhall@hotmail.com http://khall.cjb.net/
  17. kingkeith

    How do you make a block comment?

    if you type &_ at the end of each comment line so it looks something like 'Hello &_ This is a block comment &_ I hope it helps ;) and at the last one just leave it out. I hope this helps. Keith sk_kdhall@hotmail.com http://khall.cjb.net/
  18. kingkeith

    error: "No Public UserControl detected."

    Ah, yes, that keeps happening to me. What you need to do is open the usercontrol object (so you see it in design view) and scroll down in the property box until you find Public - False. Change this to True and then try compiling your code again! Hope this helps Keith sk_kdhall@hotmail.com...

Part and Inventory Search

Back
Top