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 SkipVought 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. trbrenke

    Active x AUTOCAD

    there is an OCX that comes with autocad 14 and 2000. there are some subtle diff between the two but you do have access to many of the properties. trbrenke@yahoo.com http://www.brenke.8m.com
  2. trbrenke

    How to avoid the Label stays "behind" my Command Button?

    I have run into the problem only with labels.<br>no matter what you set the zorder to the label is allways behind everything else.<br><br>what I did was the eather move the label or to only display the 'button' or the label.<br><br>example, <br>public sub Lblbutton_click() <br>Cmdbutton.visable...
  3. trbrenke

    Utilizing the Windows Username and Password

    it is posable to check if the user uses windows login or if they login to a network.<br> <br> you can check for the defalt user name and the defalt passwork. the only way I have found that it is loger into the regastry is if that person uses &quot;tweek ui&quot;.<br> <br> if the use tweek ui...
  4. trbrenke

    Resize event

    ActiveX in Netscape is through a 3rd part plugin.<br> <br> that could be your problem.<br> <br> see if it works in Internet explorer first.<br> if it does then the plugin is the problem. <p> <br><a href=mailto:trbrenke@yahoo.com>trbrenke@yahoo.com</a><br><a...
  5. trbrenke

    delimiter?

    you can count the chars and find the highest number of accurences. if it is a long file this will work very well.<br> then assume that the highest number is the delimiter.<br> <br> it will not be that accurate for small files. but there is always a way to do what you are looking to do.<br> <br>...
  6. trbrenke

    com port: ft639 chip, formating output

    I found it!<br> send data as a byte then convert to a long and it will send.<br> <br> dim tx as byte<br> dim pass as long<br> 'put the chip in active mode<br> tx = 117<br> pass = tx<br> Com1.Output = Chr$(pass)
  7. trbrenke

    How to display how many times a letter is entered in a text box

    this is an easier way to do exactly what you want.<br> use it as a function<br> <br> use this code to find you number<br> <br> dim lngResult as long<br> lngResult = CountOccurrences( text1.text,&quot;t&quot;,)<br> the lngResult = the number of times &quot;t&quot; is found <br> in text1's...
  8. trbrenke

    com port: ft639 chip, formating output

    To send binary data, you must pass a Variant which contains a byte array to the Output property.<br> <br> exactly how is this done?
  9. trbrenke

    com port: ft639 chip, formating output

    I need help formating the output to comport 1 to be read by the ft649 chip from FerretTronics.<br> Commands are sent to the FT639 through a 2400 baud, 8 bit, no parity, 1 stop bit serial line. The commands are all one byte. Each command is one character sent over the 2400 baud serial line. <br>...

Part and Inventory Search

Back
Top