Search results for query: *

  1. W

    need help adding ctrl + c, x, v

    for one reason or another when you run my code it won't work. I thought that what you said would work but it does not.
  2. W

    need help adding ctrl + c, x, v

    So I have written a really really basic word processor and am having trouble figuring out how to add the keys ctrl+c, ctrl+x, ctrl+v so that i can highlight text copy, cut, or paste when i want without using the buttons i have created. Please help. Here is my code. Option Strict On Option...
  3. W

    HeapSorting II

    Ok, I got the final code done. So for those of you who ever need heap sorting algorithm here you go...enjoy it! Module Module1 Public Class CArray Private currSize As Integer Private maxSize As Integer Private arr() As Integer Private numelements As Integer...
  4. W

    HeapSorting II

    So I have sat down and written some code out and looked at my book for some reference and read and read and all of the code looks ok except for a few things which are heapArray, currsize, Heap(SIZE) at bottom of program...if someone can get me in the right direction to getting these to work...
  5. W

    Heap Sorting...

    Please somebody...HELP!
  6. W

    Heap Sorting...

    My knowledge is that there is some code that does a heap sort in vb.net that sorts any amount of numbers (from low to high) but the code for heap sort is very interesting and this is the closest thing i could find to what i am looking for but don't know how to implement it for any random 10...
  7. W

    Heap Sorting...

    Hey guys, its crunch time again and i have an assignment due next wednesday and don't have a clue on how to do this or where to start. I learned what heap sorting is and what it does except that i have a problem. The book that was used to teach me this does not give nearly enough code for what...
  8. W

    writing some numbers...

    Hey, alright...that helped a lot...i manipulated the code but i did get it to work. thanks a lot =)
  9. W

    writing some numbers...

    ok...well that all makes sense...but here's the thing...i still need to be able to get the integer from the user in a console app...so i need to be able to read that code and basically translate it doing what you said.
  10. W

    writing some numbers...

    no leading zeros...i like the idea that you have and i thought about it...but what about teens?...everything from ten to twenty is hard to compensate for.
  11. W

    writing some numbers...

    Ok guys here my problem...its pretty simple but i can't think of a way to write it so simple... the console app is supposed to take a number input by a user from 1 - 999 and output its written equivalent...example...52 from user would output fifty-two ... what is the simplest way of doing...
  12. W

    how to declare a variable

    hey bro, I know exactly how you feel, I have been privelaged enough i guess that i was able to understand by seeing other examples and what have you. But here is my suggestion... you have a textbox with a name (such as textbox, or whatever the default is) as well as having a button. when you...
  13. W

    class has no default property

    Hello everyone, I am new to this forum and have little experience with vb.net I have written the following code that generates an error at the end that I will explain after I show you the code. Module Module1 Public compcount AsInteger = 0 PublicClass Carray Private arr() AsInteger Private...
Back
Top