473,397 Members | 1,961 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,397 software developers and data experts.

Error Creating Window Handle

I'm gettting this error at "Application.Run" in the code below. The error
message also says "Out of Memory". How can I find out more about what's
causing this error? It just breaks there with no further information.

static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(fals e);
Application.Run(new FormMain());
}

--
Thanks.
--
Thanks.
Nov 2 '06 #1
5 3128
Hello, Pucca!

Without more code it is hard to tell where the error is.
Can you provide/describe the code in the FormMain constructor?

PI'm gettting this error at "Application.Run" in the code below. The
Perror
Pmessage also says "Out of Memory". How can I find out more about
Pwhat's
Pcausing this error? It just breaks there with no further
Pinformation.

P static void Main()
P {
P Application.EnableVisualStyles();
P Application.SetCompatibleTextRenderingDefault(fals e);
P Application.Run(new FormMain());
P }

P--
PThanks.
P--
PThanks.

--
With best regards, Vadym Stetsyak.
Blog: http://vadmyst.blogspot.com
Nov 2 '06 #2
I stepped through the FormMain() and when it was done it went back to
"Application.Run(new FormMain());" and gave the "System.OutofMemory Exception"
Thanks .

public FormMain()
{

InitializeComponent();
// Create an instance of a ListView column sorter and assign it
// to the ListView control.
lvwColumnSorter = new ListViewColumnSorter();
this.NodeDetail.ListViewItemSorter = lvwColumnSorter;

//XslTransform xslt = new XslTransform();
//xslt.Load(someStylesheet);

//util = DirectoryUtil.instance;
//util.OnBind += new
DirectoryUtilEventHandler(RefreshDirectoryHandler) ;
utilContexts = DirectoryUtil.instance;
utilContexts.OnBind += new
DirectoryUtilEventHandler(RefreshDirectoryHandler) ;
//FormMain.ActiveForm.Text = "PowerPassword [" +
util.rootContainer.Name + "]";

//XmlTranslationReader msgRader = new
XmlTranslationReader(@"C:\PROJECTS\PPGLOBAL\UnityM essages.xml");

//XmlTextReader msgReader = null;
string m1 = "test";
try
{

//unityMessages = new XPathDocument(@"C:\Program Files\Symark
Software\UnityAdminSetUp\UnityMessages.xml");
string applPath = Application.StartupPath;
unityMessages = new XPathDocument(applPath +
@"\UnityMessages.xml");
unityMsgNavigator = unityMessages.CreateNavigator();

string query =
@"xliff/trans-unit[@id=""m1""]/target[lang(""fr"")](/root/element)";

//XPathExpression queryM1 = unityMsgNavigator.Compile(query);
//m1 = (string)unityMsgNavigator.Evaluate(queryM1);

//XPathNodeIterator ni =
(XPathNodeIterator)unityMsgNavigator.Evaluate(quer yM1);

//int count = ni.Count;
//while (ni.MoveNext())
//{
// MessageBox.Show(ni.Current.ToString());
//}

//string query = @"/trans-unit[@id=""m1""]/target[lang(""fr"")]";
//@"/xliff/trans-unit[@id=""m1""]/target[lang(""fr"")]"
//m1 = (string)unityMsgNavigator.Evaluate(queryM1);
//Load the reader with the XML file.
//reader = new XmlTextReader("UnityMessages.xml");
//Read the m1 message
//reader.MoveToContent();
//m1 = reader.GetAttribute("m2.en-us");
//string query =
@"xliff/trans-unit[@id=""m1""]/target[@xml:lang=""fr""]";
//string query =
@"/error-messages[@xml:lang=""en""]/msg[@myId=""2""]/text";
//m1 = msgReader.GetTranslations("m1", "en-us");
//m1 = reader.GetAttribute("id");

}
catch (Exception e)
{
MessageBox.Show(e.ToString(), "Unity", MessageBoxButtons.OK,
MessageBoxIcon.Error);
}

NodeDetail.LargeImageList = unityImageList;
NodeDetail.SmallImageList = unityImageList;
NodeDetail.StateImageList = unityImageList;
this.CreateUnityListView();
//Connect to the Global Directory
adRoot = new DirectoryEntry("GC://" +
rootDSE.Properties["defaultNamingContext"].Value.ToString());
curDomain =
rootDSE.Properties["defaultNamingContext"].Value.ToString();
serverName = rootDSE.Properties["dnsHostName"].Value.ToString();
DNSDomain = CUnityDS.GetDNSDomainName(curDomain);
this.Text = "Unity Admin Console - [" + DNSDomain + "]";
InitTree(curDomain);
}

--
Thanks.
"Vadym Stetsyak" wrote:
Hello, Pucca!

Without more code it is hard to tell where the error is.
Can you provide/describe the code in the FormMain constructor?

PI'm gettting this error at "Application.Run" in the code below. The
Perror
Pmessage also says "Out of Memory". How can I find out more about
Pwhat's
Pcausing this error? It just breaks there with no further
Pinformation.

P static void Main()
P {
P Application.EnableVisualStyles();
P Application.SetCompatibleTextRenderingDefault(fals e);
P Application.Run(new FormMain());
P }

P--
PThanks.
P--
PThanks.

--
With best regards, Vadym Stetsyak.
Blog: http://vadmyst.blogspot.com
Nov 2 '06 #3
OK, I found what's causing this error. I added some code and a new method in
which I was passing the "TreeViewEventArgs e" whcih was passed into my event
method below:
private void ppTree_AfterSelect(object sender, TreeViewEventArgs e)

Once I removed the attempt to pass "e" as a para to another method, the
error clears up. Thank you .
--
Thanks.
"Vadym Stetsyak" wrote:
Hello, Pucca!

Without more code it is hard to tell where the error is.
Can you provide/describe the code in the FormMain constructor?

PI'm gettting this error at "Application.Run" in the code below. The
Perror
Pmessage also says "Out of Memory". How can I find out more about
Pwhat's
Pcausing this error? It just breaks there with no further
Pinformation.

P static void Main()
P {
P Application.EnableVisualStyles();
P Application.SetCompatibleTextRenderingDefault(fals e);
P Application.Run(new FormMain());
P }

P--
PThanks.
P--
PThanks.

--
With best regards, Vadym Stetsyak.
Blog: http://vadmyst.blogspot.com
Nov 2 '06 #4
Actually, it's still giving me the same error message. It's happening at
this line of code:
" if ((e.Node.Text == "Reports") || (e.Node.Parent.Text ==
"Reports"))"
of:

private void ppTree_AfterSelect(object sender, TreeViewEventArgs e)
{
TreeNodeInfo nodeInfo = (TreeNodeInfo)e.Node.Tag;
if ((e.Node.Text == "Reports") || (e.Node.Parent.Text ==
"Reports"))
{
CreateReportsListView(e.Node.Text);
}
else
{
--
Thanks.
"Vadym Stetsyak" wrote:
Hello, Pucca!

Without more code it is hard to tell where the error is.
Can you provide/describe the code in the FormMain constructor?

PI'm gettting this error at "Application.Run" in the code below. The
Perror
Pmessage also says "Out of Memory". How can I find out more about
Pwhat's
Pcausing this error? It just breaks there with no further
Pinformation.

P static void Main()
P {
P Application.EnableVisualStyles();
P Application.SetCompatibleTextRenderingDefault(fals e);
P Application.Run(new FormMain());
P }

P--
PThanks.
P--
PThanks.

--
With best regards, Vadym Stetsyak.
Blog: http://vadmyst.blogspot.com
Nov 2 '06 #5
Ok, this time I really found the problem. The parent node is null.
Question, if I add a nodeB to another nodeA, doesn't nodeA automatically
becomes the parent? If so, then how can the parent node shows up as null in
the debug mode?
The following code, doesn't computerDetial node's parent would be the
reportNode?

this.ppTree.Nodes.Add(reportNode);
reportNode.Nodes.Add(computerDetail);

--
Thanks.
"Pucca" wrote:
I'm gettting this error at "Application.Run" in the code below. The error
message also says "Out of Memory". How can I find out more about what's
causing this error? It just breaks there with no further information.

static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(fals e);
Application.Run(new FormMain());
}

--
Thanks.
--
Thanks.
Nov 2 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Altramagnus | last post by:
I have 30 - 40 type of different window. For each type I need about 20 instances of the window. When I try to create them, I get "Error creating window handle" My guess is there is a maximum...
0
by: dsellers | last post by:
I called ShowDialog on a form in my app and I got this error "Error creating window handle." It was created at at System.Windows.Forms.NativeWindow.CreateHandle(CreateParams cp). Does anyone have...
0
by: Matt Warner | last post by:
Hi guys, A couple of people have already posted questions about similar issues but haven't had any response. Occasionally, sometimes after running the app for a few hours, it bombs out saying...
6
by: DraguVaso | last post by:
Hi, In my application, on some given actions while debugging in Visual Studio, I suddenly get a "System.ComponentModel.Win32Exception was unhandled" Message="Error creating window handle."...
1
by: Arne | last post by:
Hi, I keep getting "Error creating window handle." now and then while running my C# application. I've tried to figure out why, but I'm stuck. What is the usual cause of this error ? The error...
0
by: Steve | last post by:
Some end users are getting the following message after being in the application for quite some time. Exception Type: System.ComponentModel.Win32Exception NativeErrorCode: 14 ErrorCode:...
1
by: Flack | last post by:
Hey guys, Here is whats happening. I have a StringBuilder, a TextBox, and a TabControl with one TabPage. On my main form, I created and displayed a fairly big maze. While the app is solving...
0
by: =?Utf-8?B?TWFyaw==?= | last post by:
Users of an in-house application we have written randomly get an Error creating window handle exception, and we've not been able to determine why this happens. A typical callstack is as follows: ...
2
by: rvarshney | last post by:
Hi All, Sometimes my application crashes with the exception Exception type: System.ComponentModel.Win32Exception Message: Error creating window handle. My Question to you guys are: 1. I am...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.