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

  • Users: xbafge
  • Order by date
  1. xbafge

    Pop up Menus

    Yes. Presumably that mnuMyMenu was created using the Menu Editor; if it could be created using code, the solution would be more elegant.
  2. xbafge

    Pop up Menus

    The PopUpMenu method can do it provided it is provided with a Menu object. While you can always create a hidden Menu using the Menu Editor, it seems to me to be neater if one can create an independent Menu object at run-time. If that is possible I don't know how to do it.
  3. xbafge

    removing spyware from registry.

    Right. Thanks for allowing the interjection, 69x.
  4. xbafge

    removing spyware from registry.

    jrbarnett: I checked it out and it looks nice but what johnwm seems to be talking about is some kind of .ini file editor?
  5. xbafge

    removing spyware from registry.

    Okay. But if MSConfig is like a Windows utility that used to open config.sys, autoexec.bat, win.ini etc. in one stroke, it would be quite convenient.
  6. xbafge

    removing spyware from registry.

    johnwm: didn't work for me.
  7. xbafge

    Folders and files question

    The DriveListBox and DirListBox standard controls ( on the Toolbox ) will do it but I don't think they will automatically open a selected file.
  8. xbafge

    If -1 is TRUE, what value is FALSE ?

    johnwm has put forth a powerful and lucid reason for the adoption of 0 to represent the Boolean value 'false' by 0 and 'true' by any non-zero number, especially -1 by the *implementor* of a high-level language. But what is the point of abstraction if you revert to basics when the abstarct...
  9. xbafge

    If -1 is TRUE, what value is FALSE ?

    I beleive that in Visual BASIC, the truth value true is specified by the Boolean literal 'True' ( case insensitive ); the trught value false is specified by the Boolean lietral 'False'. Not <Boolean-variable> results in the opposite truth value. If such is the case the underlying ( numeric )...
  10. xbafge

    Converting from Fortran to VB

    He'd still have the same problem. Either way might a Google srearch on &quot;cross compilers&quot; help? Maybe he can find one that converts to standard BASIC and then paste that code into a sufficently old version of VB ( 3 say ) and then successively upgrade through 4,5 into 6.
  11. xbafge

    Why Use Parameter Object?

    I also am struggling with ADO parametrized queries and was not able to get any satisfactory replies. Further I am not using stored procedures. But a few hypotheses I formed while digging into the topic ( in relation to queries are ): o Microsoft claims its more efficient ( speedwise ) to...
  12. xbafge

    How much to charge for Licenses for my APP

    Don't authors get an automatic copyright on thier work?
  13. xbafge

    VB6 vs. VB.net (a matter of opinion?)

    What this means is that VB.Net will look deceptively like previous versions. Actually ( possibilly excepting the language itself ), every single thing will have to be relearnt - even e.g. the members of TextBox ( who knows the definition of a member may or may not have changed; maybe all the...
  14. xbafge

    Variable number of controls on a userform

    What about using the Controls collection that all control containers have. This has a member ADd or Append ( I forget which ), that can add controls without creating a controls array. You need to know the ProgID of the control ( obtain from Object Browser ). You can assign any symbolic name to...
  15. xbafge

    VB6 vs. VB.net (a matter of opinion?)

    A very wise criterion, LochDhu. How steep is the learning curve for vb.net? Is VB.Net nothing but VB for .Net or are the differences so many that it amounts to an entirely different ballpark? I mean e.g.: o is the applications model different o is the IDE different in nature o are the standard...
  16. xbafge

    Create database from VB with ADO

    how did you do that audit trail
  17. xbafge

    Advanced programming style discussion

    Since your topic is described broadly, I think the same thread shold include anything that falls within its ambit. But global variables or no gloabls is not a queastion of style. A question of style is one in which one of two or more alternatives may be adopted without significant diffence in...
  18. xbafge

    ActiveX : MSHFlexGrid

    Like so many articles, this only shows how to edit existing records. I have never seen any that show you how to add ( new ) records and delete records.

Part and Inventory Search

Back
Top