Announcement

Collapse
No announcement yet.

Need to use simple programmimg language - Basic ?

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Need to use simple programmimg language - Basic ?

    Need to do some very simple scientific calculations.

    Basic would be fine.

    Never touched 'C'

    Anyone any ideas ?

    : ))

    Tim


    #2
    Re: Need to use simple programmimg language - Basic ?

    you could try using kommander its kinda vb ish,
    Mark Your Solved Issues [SOLVED]
    (top of thread: thread tools)

    Comment


      #3
      Re: Need to use simple programmimg language - Basic ?

      Originally posted by sithlord48
      you could try using kommander its kinda vb ish,
      I'll see if I can install that !

      Update:- installed a dream !

      All I have to do now is find out how to drive it ! *LOL*

      Many many thanks !



      Tim

      Comment


        #4
        Re: Need to use simple programmimg language - Basic ?

        its not as hard as it looks.. fairly ez to learn w/ a few examples.
        http://docs.kde.org/kde3/en/kdewebde...der/index.html
        using the info there i was able to make a simple gui for wminput. i will attach it the code below for my two buttons.
        just note you can get to the code by right clicking and selecting "edit kommander text" that one took me a sec to find was expecting to see a view code or right click to get there (like in vb)

        Code:
        GO ="wminput "
        if (str_length(fs_config.text) != 0) then
        	GO = GO +"-c " + fs_config.text +" "
        endif
        if (chk_reconnect.checked == 1) then 
        	GO = GO +"-r "
        endif
        if (chk_wait.checked == 1) then
        	GO = GO +"-w "
        endif
        //if (chk_uinput.checked == 1) then
        //	execBackground("kdesudo modprobe uinput")
        //endif
        
        execBackground(GO,shell) <-- send var to program (var,program)
        message_info("press 1 + 2 on your wiimote") <-- displays a message box
        btn_run.setEnabled(0)
        btn_stop.setEnabled(1)
        chk_uinput.setText("Stop Uimput After Wminput")
        hope that helps a bit
        Mark Your Solved Issues [SOLVED]
        (top of thread: thread tools)

        Comment

        Working...
        X