Jump to content

RealBasic copy delete open

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
2 replies to this topic

#1
thanasis2028

thanasis2028

    Learning Programmer

  • Members
  • PipPipPip
  • 31 posts
Can you please tell me the realbasic command for opening another window of my application,and the command for copying,deleting or opening another file ? thank you

#2
TkTech

TkTech

    The Crazy One

  • Moderators
  • 1,396 posts
These are all very basic. Any one of the example projects could have told you the commands. Try using the language refrence included in all versions of the IDE next time, before you post a message.

Open a new instance of a window ( still in the main thread ):

dim w as new window1 (Or whatever the name of yours is)

w.show


folderitem.delete, folderitem.copyTo, binarystream, textinputstream. Look it up.

#3
thanasis2028

thanasis2028

    Learning Programmer

  • Members
  • PipPipPip
  • 31 posts
Many thanks .