[RESOLVED] SpreadSheet Control
I am gonna just flat out ask how do I go about creating my own spreadsheet control, I do not want to use any of the ones offered such as by dev. express and so forth because they are limited to a small amount of cells before random cells are filled with their name, I would rather try to create my own, secondly how are these even created in the first place, and I don't have MS Office or excel so i can't use that either (Would rather not anyways) and I have found examples of free ones before but they don't work and cause so many exceptions and errors that
I can't fix it. Thanks.
Re: [RESOLVED] SpreadSheet Control
Breakpoints and code stepping are the most valuable tools you can have for coding. We all use them pretty much every day in pretty nearly every language we work in. They are so useful that similar functionality of breakpoints and code stepping has been added to every IDE that I am aware of. The first thing to do is to look up how to set breakpoints F9 will do it, but there's an easier way with the mouse in VS. Once code stops at a breakpoint, stepping is F10 or F11 (F8 on some rare layouts), with a significant difference between the two, but stepping is just the beginning, since you can also look at the contents of all variables and evaluate all expressions.
Re: [RESOLVED] SpreadSheet Control
Here is a quick you tube on break points.
I had a few minutes today. (Rare thing.) I ran the spreadsheet testbed app and tested for what you said created an error. No error occurred.
The easiest way to use this testbed for range functions is to:
1) highlight the range you want to calculate.
2) right mouse and select 'copy cell address range'
3) select the cell where you want the function to reside.
4) select the function from the dropdown in the toolbar.
5) click the left arrow button to push the function into the function editor.
6) press Ctrl-V to paste the address range.
7) press enter.
Entering anything invalid into the function editor will result in an error.
Typically one forgets the '=' at the beginning. or a parentheses.
To test this enter =CAT and press enter. You will get an error.
=CAT(A2,A10).... Error as no function called CAT exists.
Re: [RESOLVED] SpreadSheet Control
As i said, it quickly disappeared, I just had to clean and rebuild a few times
I think the other error i said i got was my fault, not the code fault typo errors, and it was getting late when i tested it my fingers were hurting.