Results 1 to 2 of 2

Thread: scripting language

  1. #1
    ralphtodd
    Guest

    scripting language

    Is there any simple way to create a scripting language. I just want something simple to change the way that things work

    I only want some If...then...else, etc statements and varibles and calling built-in functions

    I have looked at a few examples on PSC but they are all too complicated

    Is there a way to have a string and just convert it to vbcode

    EG
    VB Code:
    1. dim str as string
    2. str="SomeFunction (14, 382)"
    3.  
    4. Public Function SomeFuction (num1 as integer, num2 as integer)
    5. somecode
    6.  
    7. End Function


    PS - Does anyone know why VbAccelarator takes so long to load

  2. #2
    DaoK
    Guest
    humm...should be :
    VB Code:
    1. dim str as string
    2. str=SomeFunction (14, 382)
    3.  
    4. Public Function SomeFuction (num1 as integer, num2 as integer) integer
    5. 'somecode
    6.  
    7. End Function


    And you can not make code that will work like write in a text box "Msgbox "hi"" and it will make a msg box... it's impossible sorry

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width