Thank you for this link.. Anze
flyingv
Posts
-
Problems with dll's in C# -
Problems with dll's in C#Hello, Problem 1: I wonder if you could use (how) dll made in delphi in C#. Problem 2: How do you make dll in C# and use this dll in Delphi, C++ ... Is this posible? I'm made dll with delphi and open it with Dependency walker. I can see my functions. But if I made "dll" with C# (you know: New project; ClassLibrary...), I can't see nothing. So I think that this dll is not real dll. How can I make "real" dll in C# : you know like dll in delphi function Something(a, b : integer) : integer; stdcall; begin Result:= a+ b; end; exports Something; Thank you for answers, have a nice day, Anze
-
what you must add to your exe fileHello, I made simple applicatino in VC#. On my computer work good (Win2000), but in the other computers the program show message (cannot find mscoree.dll...). I read somewhere that you must install Microsoft .NET framework, but for me is this not right solution for small application with two forms. for exaple: if I want to make Installation program (INNO SETUP), which files I must add to my Exe file that program work properly on computer with Win98, ME, 2000, 95... withowt Microsoft .NET framework. Thank you again for answers Anze
-
DataComponents in Visual C#Hello, I can't find in C# any of data components like dbTextEdit, dbComboBox, dbLookupComboBox, dbRadioButton, dbCheckButton , dbTreeList... My main programm tool is Delphi so I'm very confused about some things in C#. What is solution about this problem. Thank you for answers. Anze /*Sorry about my English*/
-
Access components on modal form from mainformHello, In my project I have two forms: frmMainForm (Mdi parent) frmLogon (dialog) - components on frmLogon: (edUserName, edPassword, edDatabase) - TextEdit (btnOk, btnCancel) - Buttons In frmMainForm Load event i wrote this code; { frmLogon Logon = new frmLogon(); Logon.ShowDidalog(); if (Logon.DialogResult == DialogResult.OK) { this is my problem, I don't know how can I get values from edUserName, edPassword... to build connectstring. I mean something like that
string username = Logon.edUserName.Text;
} } I hope you understand me Thank you for answers Anze /*sorry about my bad English*/ -
Images in MainMenu or Popup menuHello, I don't know how add images to main menu or popup menu. Thank you for answers Anže /*Sorry about my English*/