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

  1. curlyj

    adding to negative numbers

    thats great! thnk you VERY much!!!! QBasic is fun! Go see what I've done! http://www.curlyJ.co.uk/Pages/q_basic.htm
  2. curlyj

    adding to negative numbers

    i didnt think i could explaint it too well - here is my 2nd shot Private Sub Command1_Click() Dim start As Double, limit As Double, addon As Double start = -2 limit = 1.1 addon = 0.1 Do Until start >= limit start = start + addon Debug.Print start Loop End Sub which gives the following results...
  3. curlyj

    adding to negative numbers

    Hi, Im trying to increment a negative number towards 0 onwards - and store the result in my array. my negative number has 6 places and can only range from -2.000000 to +2.000000 I have a start value, the step to increment by, and a limit - which resets back to start value so I might...
  4. curlyj

    random 2d landscape

    Hello! I would like some help and advice... im trying to generate random 2d landscapes - kinda worms style, but I just want a line that goes from the left of the screen to the right - I dont need extra bits of land floating on there own. I wish I had some code to show you - every effort ive made...
  5. curlyj

    pointers

    I am reading up on how to code with Visual C++ 6 and I have understood all the concepts I have read - so far - bar pointers. I understand that you can set a pointer to a memory location thats holding data but the rest of pointers I just cant understand! It's a bit cheeky, but could someone...
  6. curlyj

    sound(x)

    Hi! Im new to C++ and have been reading through C For Dummies Volume 1 I am using Borland C++ 5.5.1 the book states that although it is written for C the book works for C++ as well. in the book there is the following example that is to be typed in, yet it will not work. Could anyone help...
  7. curlyj

    Dependency files

    I already have my own setup file, which deals with some reg entry's needed. What I need to know is, if I install the extra files into a users system folder, are there any other steps needed to ensure the file work? ie do the files need to be registered with windows in some way? QBasic is fun! Go...
  8. curlyj

    looking for users of qbasic

    I have thought about your idea to make the vb project open to other vb users. I don't think that would be a good idea! I'm very new to VB6 and i'm sure my code is messy! I think i'll stick to giving the exe away! Until I can better my skills atleast! QBasic is fun! Go see what I've done...
  9. curlyj

    Dependency files

    I have a VB 6 project that has dependancies other then the files that are bundled by MS as VBRUN600.EXE Do I have to make sure that these extra files needed to run my app are in a users system folder? Do I have to register the files with windows in some way? Thanx for your help! QBasic is fun...
  10. curlyj

    looking for users of qbasic

    Thanx for youre help! I am now a member of tek-tips! I have put a web page up on the net so people can read a bit more about it and then decide if they want to give it a go or not. http://www.blackrabbit.btinternet.co.uk/CurlyJ/Pages/QBLaunch.htm How do people get there programs tested if no...

Part and Inventory Search

Back
Top