Hi, I am getting the same error. Did you figure it out? If so, can you please let me know. Thanks in advance. Ken
Madmaximus
Posts
-
DataSet does not support System.Nullable<> -
Detecting low memoryI just need to find a way that will let me know if the OS's memory/resources is low. Is there a windows API or maybe an event in .Net that I can just plug-in to?
-
Detecting low memoryHi all, I am trying to have my program detect when the system's memory is low. Is there an event or a windows API that I can use to achieve this? Thanks in advance.
-
Comments FormHi all, I am new to ASP.Net and I want to add a user comments section to my web page. Is there a site that can help explain how, so I don't have to reinvent the wheel? Thanks in advance. Ken
-
This is a fucking disgraceMadmaximus wrote: You do have a choice it's called "Doing the right thing" by not aborting and put it up for adoption. Thanks for your valuable opinion. Yes, it is better then your stupid gibberish lies you have been spewing. Reading your stuff is like talking to a 4 year old.
Al Beback wrote:
Madmaximus wrote: Two wrongs don't make it right. Actually, it's "Two wrongs don't make a right." But thanks for the irrelevant cliche.
Actually it is correct. Now go pull your head out of your ass and go and learn something.
Al Beback wrote:
Madmaximus wrote: This much might be too much for your little brain. It's people like you who can't think beyond their little head that is the problem. My little brain can't understand. Don't bother explaining.
Good, don't waste my time until you finish Elementary school.
-
This is a fucking disgraceYou do have a choice it's called "Doing the right thing" by not aborting and put it up for adoption. Two wrongs don't make it right. This much might be too much for your little brain. :doh: It's people like you who can't think beyond their little head that is the problem.
-
Windows Service InstallerWhen I run setup of a Windows Service installation screen. How can I catch the cancel button event for the “Set Service Login” screen? Thanks in advance, Ken
-
[Message Deleted] [modified]Short answer, it is possible to, “hide data inside a text file without changing the fle size even by a single byte and without replacing/changing/distorting any of the readable/printable letters of the file”. But the characters would not be readable at that time the “hidden” data is in there. Of course you need a mask data stream to extract the “hidden” data from the real/actual (what ever you want to call it) data. The question here is why??? :confused: If you want to encrypt/hide the data then use a real encryption algorithm. It would be far more secure then simple hide and seek protocol.
-
Guns and stuff... [modified]“So it is only humans that define rights? But saying that rights are a law of nature is saying that humans define laws of nature.” Yes we can, since we are defining how/what a human governing body can/can’t do to individuals then rights are involved. The people are telling a governing body that this is a nature right to defend one self and they can’t pass a law against it. However they chose to do so is up to the individual. So one day when you grow up, maybe you might understand this… but I doubt it. :laugh:
-
Global warming is a sign of the end timesArrg, that site made my eyes bleed!!!
-
Down-CastingHi all, Is it possible to do down-casting? If so, how? Example: Public class A { } Public class B : A { } Void main() { A a = new A(); B b = (B)a; // <-- down-cast, a run time error. :confused: } Thanks in advance.
-
You Americans are obsessed with guns. What is it, Penis envy?"Often it is said "we need guns to protect ourself against criminals with guns". If guns aren't allowed for everybody it's harder to get one even for criminals." That is totally false; you should learn to think before you act. It has been proven that only the criminals will have the guns. Hence why they are criminals.
-
Asynchronous socket questionHi all, I have a continuous stream of packet data going through my asynchronous socket connection. My question is how can I tell in the EndReceive callback method where one package of data ends and another begins? I coded the socket class in C# 1.1. Thanks in an advance. :) Ken
-
Configure Windows 2003 Server FirewallHi all, I need to configure Windows 2003 firewall as the server boots up. Is there a script or ini file that I can use to do this? Thanks in advance
-
Nuclear Weapons [modified]:laugh::laugh::laugh::laugh:
-
When does it end?Your points are correct and well put. If people would only learn history. As Cicero puts it: "He who does not know history is destined to remain a child." To add to your points, all the wars that the Roman Empire did in its conquests of the world accumulated to more savagery than any religion.
-
I hate Canada. - modifiedHEAR! HEAR! Nope
Jeremy Falcon wrote:
[edit] Ok, I admit I overreacted on this one, but you sure as hell provoked it. Anyway, the point still stands. [/edit]
Nope, you didn't. Keep up the good work.
-
A statistical random functionThanks for reply. Sorry for the confusion but here is the definition. Mean: The average of a set of N numbers. Yes I have, the best I could come up with is this: double h; double avg = 3.0, max = 10.0, min = 1.0; Random RandomClass = new Random (10); h = (- System.Math.Log(RandomClass.NextDouble())) * (avg - min); But this does not help with making sure the value doesn’t go over the max.
-
A statistical random functionHi, I am looking for a statistical random function that would allow me to supply the mean, min and max values. Something like: Double mean = 3; Double min = 1; Double max = 10; Double d = GenNext () Any help would be appreciated. :-D
-
Unix file lockingHi All, Looking for a way to dynamically control the lock and unlock a file between processes on a Unix machine using C++. Is it best to use the POSIX resource control? Thanks in advance. Ken