|
The learning edition is for students only and I don't think it can be used to produce commercial code.
VC# std ed should be fine, depending on the type of work you intend doing with it.
Cheers,
Simon
sig :: "Don't try to be like Jackie. There is only one Jackie.... Study computers instead.", Jackie Chan on career choices.
article :: animation mechanics in SVG picture :: my first abstract photo
|
|
|
|
|
Are you sure about that? It looks to me like a bundling of a book and Visual C# .Net. Microsoft's web site doesn't say it is an academic version. See this link[^].
-- Bud
|
|
|
|
|
I see what you mean.
I'd contact your local MS office and find out exactly what version is in that book.
Cheers,
Simon
sig :: "Don't try to be like Jackie. There is only one Jackie.... Study computers instead.", Jackie Chan on career choices.
article :: animation mechanics in SVG picture :: my first abstract photo
|
|
|
|
|
SimonS wrote:
VC# std ed should be fine, depending on the type of work you intend doing with it.
One of the things that concerned me was I want to be able to create windows services and web services. I tought I read that there were some limitations on doing this in the standard edition.
Also, will I be able to import ActiveX controls with the wizard?
Thanks. -- Bud
|
|
|
|
|
Correct, the standard edition is limited. Hence the drastic price difference between it and the pro/enterprise architect edition.
Occording to this[^] site, you can create XML web services, but I don't think that you can create Windows services though.
Cheers,
Simon
sig :: "Don't try to be like Jackie. There is only one Jackie.... Study computers instead.", Jackie Chan on career choices.
article :: animation mechanics in SVG picture :: my first abstract photo
|
|
|
|
|
Would someone be able to give me the inside scoop on delegates and remoting? How hard or easy is it to use delegates w/remoting? What's involved? Any good articles and/or links on this?
From what I've gathered, you can use delegates with remoting, but it doesn't work very well with interface methods. Is this correct?
"Blessed are the peacemakers, for they shall be called sons of God." - Jesus
"You must be the change you wish to see in the world." - Mahatma Gandhi
|
|
|
|
|
jdunlap wrote:
Would someone be able to give me the inside scoop on delegates and remoting? How hard or easy is it to use delegates w/remoting? What's involved?
Selling your soul.
Have a look at my Plugin Manager article. I kind of takkle it there. Another thing that rings a bell, is the CrossAppDomainDelegate class.
leppie::AllocCPArticle("Zee blog");
|
|
|
|
|
Ok, thanks for the pointers! I'll look into that.
Basically, I'm wanting to know if one can have events or a similar type of notification system using delegates, with remoting.
Really, though, it's not that important - just that somebody on our team insists that remoting must be kept as an open option, even though this is just a GUI Library.
"Blessed are the peacemakers, for they shall be called sons of God." - Jesus
"You must be the change you wish to see in the world." - Mahatma Gandhi
|
|
|
|
|
jdunlap wrote:
Really, though, it's not that important - just that somebody on our team insists that remoting must be kept as an open option, even though this is just a GUI Library.
Thats where the sh*t will hit the fan. Although a Control class is based on MarshalRefByObject class, many eventhandlers are not or not serializable, thus making things incredibly difficult.
If you find my article fruitfull, I can mail u the "GUI" test I did. It can change colors... thats about it.
leppie::AllocCPArticle("Zee blog");
|
|
|
|
|
leppie wrote:
Although a Control class is based on MarshalRefByObject class, many eventhandlers are not or not serializable, thus making things incredibly difficult.
Well, we're going lightweight (windowless), so that's not so much of an issue.
leppie wrote:
f you find my article fruitfull, I can mail u the "GUI" test I did. It can change colors... thats about it.
OK, that might be helpful.
"Blessed are the peacemakers, for they shall be called sons of God." - Jesus
"You must be the change you wish to see in the world." - Mahatma Gandhi
|
|
|
|
|
My experience with "Bad data" when trying to decrypt buffers using RSACryptoServiceProvider is incorrect block size. What else is possible?
|
|
|
|
|
Hi, having trouble decrypting a buffer using RSA. Did you find solution to the problem yet? Here's the code - I've highlighted the problem with "QUESTION" tags. Here's my code, please take a look. Thanks.
using System;
using System.Text;
using System.Security.Cryptography;
namespace tryRSA
{
///
/// Summary description for Class1.
///
class Class1
{
///
/// The main entry point for the application.
///
[STAThread]
static void Main(string[] args)
{ //Main
int index=0;
int iterations=0;
int blocksize=0;
int KeySizeByte=0;
byte [] btSecret;
byte [] btEncryptedSecret;
byte [] btDescrambledSecret;
byte [] btPlainTxtToken;
byte [] btEncryptedToken;
string secret = "This is a long secret";
ASCIIEncoding AE = new ASCIIEncoding();
RSACryptoServiceProvider RSA = new RSACryptoServiceProvider();
KeySizeByte = RSA.KeySize/8;
blocksize = KeySizeByte -11; //QUESTION 1: I've been told that blocksize is equal Key size less 11 bytes. How'd you know that?
Console.WriteLine("Key size: {0}", KeySizeByte);
Console.WriteLine("blocksize: {0}", blocksize);
btSecret = AE.GetBytes(secret);
if(btSecret.Length % blocksize != 0)
{
iterations = btSecret.Length/blocksize +1;
}
else
{
iterations = btSecret.Length/blocksize;
}
index=0;
btPlainTxtToken = new byte [blocksize];
btEncryptedSecret = new byte [iterations*blocksize];
for(int i=0; i
|
|
|
|
|
Is there any method in drawing namespace to draw rounded rectangles? I couldn't find any thing useful through this namespace.
Don't forget, that's Persian Gulf not Arabian gulf!
|
|
|
|
|
|
Is it possible to run my
C# console application on Unix?
|
|
|
|
|
|
|
|
Hello Guru,
How do you play avi movies files such as deleting, copying, etc. in C#? I there a movie or animation control for this?
Thanks so much,
Khang Nguyen
|
|
|
|
|
I saw some kind of Animation Control under Dialog Editor tab of Toolbox but it's disabled and can't drag it out onto a form or dialog. How can you enable this Animation Control?
Thanks,
Khang Nguyen
|
|
|
|
|
hello,
here is a small problem i am facing,
here it is: can i run my c# program on Linux. i.e. say i have a c# program (windown platform) and i want it to run on Linux, now can I?
looking for guidance,
KHURRAM.
Asim
|
|
|
|
|
|
I have some Mdiclient who's windowsState is "Maximized" and where minimumBox and maximumBox is set to false.
ControlBox is set to false.
FormBorderStyle is "FixedToolWindow".
But still there is 3 icons in top right, when the mdiClient is Maximized....
And there is also a restore icon in top left.
How do I remove these icons, so that my MdiClient always is Maximized??
See:
http://csharp.users.whitehat.dk/mdi.jpg
Thanks
|
|
|
|
|
I belive you set the control box property to false.
Paul Watson wrote:
"At the end of the day it is what you produce that counts, not how many doctorates you have on the wall."
George Carlin wrote:
"Don't sweat the petty things, and don't pet the sweaty things."
Jörgen Sigvardsson wrote:
If the physicists find a universal theory describing the laws of universe, I'm sure the a**hole constant will be an integral part of that theory.
|
|
|
|
|
No it won't work.
If the MdiClient is maximized, then the 3 icons are still there.
Anyway, the icon on top left is also there.
|
|
|
|