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 bkrike 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 CBrianA

  1. CBrianA

    Interpreting formulas entered at run-time

    I can't claim to have developed this code; I knew I had done it in the past, and then searched until I found it in one of the newsgroups. I tried this on VB6 a few minutes ago. 'Requires the Microsoft Script Control (msscript.ocx) Private Sub Command1_Click() Dim A As String Dim...
  2. CBrianA

    Help!! Hiding Title bar on the form. URGENT

    I've used the code from this site before: http://www.vbcodemagician.dk/tips/forms_showhidetitle.htm Should give you what you want.
  3. CBrianA

    WebBrowser: automatic page saving

    I can't claim credit for this one. It came directly from Edanmo's VB page: http://www.mvps.org/emorcillo/ To save the page from a WebBrowser you usually use the ExecWB method, but it always shows the "Save As..." dialog. If you want to save the source page without showing a dialog...
  4. CBrianA

    searching for text in a reflection session.

    This will work in VB6: Private Sub Form_Load() If InStr(1, ReadFile("wlr.log"), "error", vbTextCompare) > 0 Then MsgBox "Error found", vbOKOnly End If End Sub Public Function ReadFile(ByVal FileName As String) As String 'Read an entire file in...
  5. CBrianA

    Formatting tooltips (e.g. with vbcrlf)

    Sorry - tooltips are single lines. However: I had the same question and came across a control at this website: http://www.mvps.org/emorcillo/ which does exactly what you are looking for. Navigate over to the Source Code, then pick the Controls link. The "Multiline Tooltips" is what...
  6. CBrianA

    How to decode QWord Timestamp???

    I am trying to read a q-word entry in the registry. It's identified as a FileTimeStamp. Is there an easy way to turn this into something printable? Brian
  7. CBrianA

    CDO For Win2K Not In References List?

    You shouldn't need the CDO for W2K if you have the CDO for Exchange available. According to the MSKB article here: http://support.microsoft.com/default.aspx?scid=kb;en-us;318823 the CDO for Exchange is a superset of the CDO for Windows 2000. It contains all of the functionality of CDO for...
  8. CBrianA

    Upgrading vb5 Learning Ed. to Pro.

    Yes, you can upgrade from VB5 Learning to VB6 Pro. I looked around a little, and found VB6 Enterprise edition (media only) at TechDepot for about $30 US. Actually, according to Microsoft, you are supposed to pay the full amount, and not the 'upgrade' price, but since VB6 has been supplanted by...
  9. CBrianA

    uncheck option buttons

    On the other hand, I recently had to deal with a user that wanted the functionality of radio buttons, but wanted to use checkboxes instead. So the requirements were: 1) Use Checkboxes. 2) Only one could be checked. 3) There could be none checked. I put them into a frame and used the Click...
  10. CBrianA

    Creating folders are setting security

    You are actually manipulating the ACLs of the folder, and there is a Microsoft Q article: Q240176, which tells how to set the security of NTFS folders programatically. I don't have any code to show how it's done, but I know there are examples out there.
  11. CBrianA

    Application Folder

    Bill: Yes, that is easily done by the Packaging and Deployment Wizard. When you get to the 'Install Locations' screen, the rightmost column will be the location where the app is to reside. Change it there, and it will install to that path.
  12. CBrianA

    Package Wizard wants to include a file "2"

    I've never seen a '2' file before - it may have been a typo the first time you set up the package. Unfortunately, the packaging wizard will not delete files once they are put into the dependencies. You will need to delete the package (not your source - just the package) and repackage it.
  13. CBrianA

    output to stdout

    It depends on what you are trying to do. Are you trying to send information to a program running in the console window? If so, the SENDKEYS function will do most of what you want.
  14. CBrianA

    GUI and VB

    Try this: http://www.vb2themax.com/Item.asp?PageID=CodeBank&Cat=1450&ID=198
  15. CBrianA

    Explorer Right Click menu

    Go to this link: http://www.mvps.org/st-software/Ask_NT_Pro.htm and take a look at tip #32.

Part and Inventory Search

Back
Top