Hello All! Somenthing must have go wrong with my project. I've created a new one with more functions and all was good. I really can't tell what was the problem but now everything is ok. thanks a lot for your help and patience! Cumps!
uNsignedINT
Posts
-
Class Library DLL with no functions -
Class Library DLL with no functionsYes your right :) I meant 2 files :) AssemblyInfo.cs and Class1.cs I open the DLL with the Dependency Walker just by double cliking on the DLL. It shows me all the dependant dll's and the the functions that exports. How would you do a DLL in C# that is supposed to be used by another application? Thanks!
-
Class Library DLL with no functionsHello!!! Thanks for answering. When I create a new Class Library C# project it comes with 2 classes: AssemblyInfo.cs and Class1.cs I have only added GetInt() to Class1. I know that the DLL exports nothing by opening it and I can see that it has no exported functions. :( This is what I have: namespace MyProject { public class Class1 { public Class1{} public int GetInt(){return 100;} } }
-
Class Library DLL with no functionsHello all! I'm a rookie at C# and i'm wondering why the hell does a new class library project with one function added by me generates a DLL with no functions??? I'm I being very dumb here??? The project only have two classes: AssenblyInfo.cs and Class1.cs Class1.cs defines a class with one function. all compiles well but no functions on the DLL!!!!!! Help!!!!:confused:
-
How to maximize a child window in a MDI projectThank you!! It did the trick! See ya!
-
How to maximize a child window in a MDI projectHello, I don't know how to get my child window maximized when my app starts! Need help!!! Thanks!:(
-
How to implement OpenGL in MDI?Can someone help me with this? I need a simple and basic example to implement GL in a MDI app! Thank you!!:-O
-
Simple Dialog Box in SDI--- HELP!!!!Hello, my problem: Need a dialog box to get 2 coordinates (x,y) to draw a rectangle in the viewport!! I have managed to do it but only when I rezise the window! Probably a stupid question but... Thankx!!!:confused: