[Solved] Why doesn’t my C# compiler (Visual Studio) let me do this with a try block?

I’ll go over your points one by one: Declare long presult; right before the try statement. This makes the compiler mad because it wrongly thinks there’s a possibility of returning an unintialized variable. Actually, the compiler correctly determines that there is the possibility of returning an uninitialized variable. Since the variable is only set if … Read more

[Solved] Which references am I missing?

You seem to be confusing the ExcelPackage project and the EPPlus project. I can see how as they share namespaces and class names (I don’t know the history of either to know if they’re related or not). You have a reference to the ExcelPackage dll in your example. The ExcelWorksheet class there doesn’t have a … Read more

[Solved] Is it really impossible to develop Windows Store apps on Windows 7? [closed]

It is not impossible to install the Visual Studio on the pc, although that would require you take apart the setup and do things manually, however even if you do the install will be broken and would crash more often than not, so much that it becomes pretty much unusable. So do as the other … Read more

[Solved] Installing root library in VS13

“#include <TCanvas>” int main(){ return 0; } This program is syntactically wrong. For some reason you have surrounded an entire #include statement with double quotes. Have you tried: #include “TCanvas.h” int main(int argc, char **argv) { return 0; } Edit: Well, you edited your post (twice as I was typing this!), changing everything and now … Read more