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 yule1111

  1. yule1111

    Unique identifier for each computer

    Isn't there a unique hardware code for the physical cpu? if so, can that be used? if so, how to get that string?
  2. yule1111

    Breaks in vb

    Sub whatever() on error goto errHandle do stuff do stuff do stuff exit sub'add this here otherwise you get msg wrongfully errHandle: msgbox "An error has occured" & chr(10) & "Please contact ....." exit sub end sub
  3. yule1111

    powerpoint venn diagram

    I am trying to make a venn diagram of 3 inner partially overlapping circles; then enclose these 3 with a bigger circle. I see this as one object with 3 imbedded objects. I would like to move/enclarge the outer circle such that the inner ones would automatically enlarge. Is this possible? I...
  4. yule1111

    execute a subroutine or function via a string

    Why would one need to use evaluate? One possible use: Given 1 or more numbers/objects or operands, conditionally you may decide to perform a particular operation like add/subtract/xyz-function depending on for example on the content of those input parameters, the logic would know the...
  5. yule1111

    execute a subroutine or function via a string

    Thanks; lame excuses include clumsy fingers and fatigue. Sorry I wasted your time. It was NOT meant to be a trick question.
  6. yule1111

    execute a subroutine or function via a string

    In excel 2000, is there an evaluate-function or equivalence of subroutine in VBA to do the following: function myadd(a#, b#) myadd = a + b end function sub test msgbox EVALUATE("myadd( " & 2.3 & ", " & 2.3 & ")") end sub If impossible directly, please share...

Part and Inventory Search

Back
Top