Click here to Skip to main content
15,899,626 members
Home / Discussions / C#
   

C#

 
QuestionRe: Can I create a personalized window? Pin
Khoramdin9-Feb-07 22:00
Khoramdin9-Feb-07 22:00 
QuestioncurrentMotion[0]["MeetingDateProp"].ToString("MMM dd, yyyy") Pin
Glen Harvy9-Feb-07 12:06
Glen Harvy9-Feb-07 12:06 
AnswerRe: currentMotion[0]["MeetingDateProp"].ToString("MMM dd, yyyy") Pin
Christian Graus9-Feb-07 12:12
protectorChristian Graus9-Feb-07 12:12 
GeneralRe: currentMotion[0]["MeetingDateProp"].ToString("MMM dd, yyyy") Pin
Glen Harvy9-Feb-07 14:26
Glen Harvy9-Feb-07 14:26 
AnswerRe: currentMotion[0]["MeetingDateProp"].ToString("MMM dd, yyyy") Pin
Ed.Poore9-Feb-07 12:42
Ed.Poore9-Feb-07 12:42 
GeneralRe: currentMotion[0]["MeetingDateProp"].ToString("MMM dd, yyyy") Pin
Glen Harvy9-Feb-07 14:28
Glen Harvy9-Feb-07 14:28 
GeneralRe: currentMotion[0]["MeetingDateProp"].ToString("MMM dd, yyyy") Pin
Ed.Poore9-Feb-07 15:01
Ed.Poore9-Feb-07 15:01 
Question.NET memory limitations Pin
Todd Smith9-Feb-07 11:38
Todd Smith9-Feb-07 11:38 
Is there an inherent limitation to the amount of available memory for a 32bit .NET application? For a simple test I'm running out of memory at around 1.4 to 1.6gb.

using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
using System.Threading;
using System.Windows.Forms;

namespace MemoryTest
{
	class Program
	{
		static void Main(string[] args)
		{
			int count = 0;
			int size = 1024 * 1024 * 100;
			byte[][] buffer = new byte[1024][];

			try
			{
				do
				{
					buffer[count] = new byte[size];
					Array.Clear(buffer[count], 0, buffer[count].Length);

					Console.Out.WriteLine("count={0} size={1}", count.ToString(), buffer[count].Length.ToString());
					MessageBox.Show("Click Ok to continue", "Got RAM?", MessageBoxButtons.OK, MessageBoxIcon.Question);

					count++;

				} while (true);
			}
			catch (Exception e)
			{
				Console.WriteLine("{0} Exception caught (count={1})", e, count.ToString());
			}
		}
	}
}


Todd Smith

AnswerRe: .NET memory limitations Pin
Christian Graus9-Feb-07 12:13
protectorChristian Graus9-Feb-07 12:13 
GeneralRe: .NET memory limitations Pin
M Harris10-Feb-07 3:10
M Harris10-Feb-07 3:10 
AnswerRe: .NET memory limitations Pin
Nemanja Trifunovic9-Feb-07 12:16
Nemanja Trifunovic9-Feb-07 12:16 
GeneralRe: .NET memory limitations Pin
Todd Smith9-Feb-07 12:58
Todd Smith9-Feb-07 12:58 
QuestionDatabase access [modified] Pin
sreecahitu9-Feb-07 10:30
sreecahitu9-Feb-07 10:30 
AnswerRe: Database access Pin
Aaron VanWieren9-Feb-07 10:41
Aaron VanWieren9-Feb-07 10:41 
AnswerRe: Database access Pin
Christian Graus9-Feb-07 10:47
protectorChristian Graus9-Feb-07 10:47 
GeneralRe: Database access Pin
sreecahitu9-Feb-07 10:53
sreecahitu9-Feb-07 10:53 
GeneralRe: Database access Pin
Christian Graus9-Feb-07 12:09
protectorChristian Graus9-Feb-07 12:09 
GeneralRe: Database access Pin
sreecahitu9-Feb-07 12:56
sreecahitu9-Feb-07 12:56 
GeneralRe: Database access Pin
Dave Kreskowiak9-Feb-07 13:05
mveDave Kreskowiak9-Feb-07 13:05 
GeneralRe: Database access Pin
Christian Graus9-Feb-07 13:13
protectorChristian Graus9-Feb-07 13:13 
GeneralRe: Database access Pin
sreecahitu9-Feb-07 13:43
sreecahitu9-Feb-07 13:43 
GeneralRe: Database access Pin
dabuskol9-Feb-07 19:35
dabuskol9-Feb-07 19:35 
QuestionData navigator? Pin
TrooperIronMan9-Feb-07 9:44
TrooperIronMan9-Feb-07 9:44 
QuestionGPRS Data Transfer Pin
Tauseef A9-Feb-07 8:25
Tauseef A9-Feb-07 8:25 
AnswerRe: GPRS Data Transfer Pin
Ed.Poore9-Feb-07 12:41
Ed.Poore9-Feb-07 12:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.