473,395 Members | 1,496 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,395 software developers and data experts.

object reference not set to an instance of an object

I have a code like this

using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Drawing;
using System.Data.Odbc;
using System.Text;
using System.Data;
using Microsoft.Win32;
using System.IO;
using System.Diagnostics;
using System.Net;

public class sylagent : Form
{
private Process[] myproc;
private Timer t1;
private FileVersionInfo myinfo;
private int count;
private System.ComponentModel.Container components = null;
private String program;

public sylagent()
{
myproc = Process.GetProcesses();
count = 0;
this.Size = new Size(300, 300);
this.Location = new Point(100, 100);
this.Visible = false;

this.t1 = new Timer();
this.t1.Interval = 1000;
this.t1.Start();
this.t1.Tick += new EventHandler(t1_tick);

}

protected override void Dispose(bool Disposing)
{
if (Disposing)
{
if (components != null)
{
components.Dispose();
}
}
Process[] procuo = Process.GetProcesses();
for (int i = 0; i < procuo.Length; i++)
{
if
(procuo[i].ProcessName.Equals("client"))
{
procuo[i].Kill();
}
}

base.Dispose(true);

}

public void t1_tick(object sender, EventArgs e)
{
for (int i = 0; i < myproc.Length; i++)
{
if (this.myproc[i].MainModule.FileName !=
null)
{
this.program =
this.myproc[i].MainModule.FileName.ToString();
}

if (this.program[0] == 'C' ||
this.program[0] == 'D' || this.program[0] == 'E' ||
this.program[0] == 'F' || this.program[0] ==
'G')
{
this.myinfo =
FileVersionInfo.GetVersionInfo(this.myproc[i].MainModule.FileName.ToString());
}

if
(this.myinfo.OriginalFilename.ToString().Equals("c onnector.exe"))
{
this.count++;
}

}
if (this.count != 1)
{
this.Close();
}
this.count = 0;

}

public static void Main()
{
Application.Run(new sylagent());

}
}
and when i execute my program i m taking this error
[code:1:dcfdf8a81c]
object reference not set to an instance of an object
[/code:1:dcfdf8a81c]

How can i fix it
Thanks
Posted Via Usenet.com Premium Usenet Newsgroup Services
----------------------------------------------------------
** SPEED ** RETENTION ** COMPLETION ** ANONYMITY **
----------------------------------------------------------
http://www.usenet.com
Nov 16 '05 #1
7 4588
"Dakkar" <da****@sylveria.gen-dot-tr.no-spam.invalid> ha scritto nel
messaggio news:42********@127.0.0.1...

and when i execute my program i m taking this error
[code:1:dcfdf8a81c]
object reference not set to an instance of an object
[/code:1:dcfdf8a81c]
Where?
How can i fix it


set the object to an istance :)

--
Reporting tool: http://www.neodatatype.net
Nov 16 '05 #2
any idea?
Posted Via Usenet.com Premium Usenet Newsgroup Services
----------------------------------------------------------
** SPEED ** RETENTION ** COMPLETION ** ANONYMITY **
----------------------------------------------------------
http://www.usenet.com
Nov 16 '05 #3
Its not showing the line

how can i instance the object
NeoNetwrote: "Dakkar" <da****@sylveria.gen-dot-tr.no-spam.invalid> ha
scritto nel messaggio news:42********@127.0.0.1...
and when i execute my program i m taking this error

object reference not set to an instance of an object

Where?
How can i fix it

set the object to an istance :)

--
Reporting tool: http://www.neodatatype.net[/quote:9068f20354]
Posted Via Usenet.com Premium Usenet Newsgroup Services
----------------------------------------------------------
** SPEED ** RETENTION ** COMPLETION ** ANONYMITY **
----------------------------------------------------------
http://www.usenet.com
Nov 16 '05 #4
"Dakkar" <da****@sylveria.gen-dot-tr.no-spam.invalid> wrote in message
news:42********@127.0.0.1...
Its not showing the line
Er, step through your code until you get to the line which throws the
error...
how can i instance the object


When you find which object is trying to be called, instantiate it...
Nov 16 '05 #5
put in a try-catch block. In the catch statement, write out the exception as
Console.WriteLine(exc.ToString())

When you do this, you get a complete dump of the location of the error.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"Dakkar" <da****@sylveria.gen-dot-tr.no-spam.invalid> wrote in message
news:42********@127.0.0.1...
I have a code like this

using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Drawing;
using System.Data.Odbc;
using System.Text;
using System.Data;
using Microsoft.Win32;
using System.IO;
using System.Diagnostics;
using System.Net;

public class sylagent : Form
{
private Process[] myproc;
private Timer t1;
private FileVersionInfo myinfo;
private int count;
private System.ComponentModel.Container components = null;
private String program;

public sylagent()
{
myproc = Process.GetProcesses();
count = 0;
this.Size = new Size(300, 300);
this.Location = new Point(100, 100);
this.Visible = false;

this.t1 = new Timer();
this.t1.Interval = 1000;
this.t1.Start();
this.t1.Tick += new EventHandler(t1_tick);

}

protected override void Dispose(bool Disposing)
{
if (Disposing)
{
if (components != null)
{
components.Dispose();
}
}
Process[] procuo = Process.GetProcesses();
for (int i = 0; i < procuo.Length; i++)
{
if
(procuo[i].ProcessName.Equals("client"))
{
procuo[i].Kill();
}
}

base.Dispose(true);

}

public void t1_tick(object sender, EventArgs e)
{
for (int i = 0; i < myproc.Length; i++)
{
if (this.myproc[i].MainModule.FileName !=
null)
{
this.program =
this.myproc[i].MainModule.FileName.ToString();
}

if (this.program[0] == 'C' ||
this.program[0] == 'D' || this.program[0] == 'E' ||
this.program[0] == 'F' || this.program[0] ==
'G')
{
this.myinfo =
FileVersionInfo.GetVersionInfo(this.myproc[i].MainModule.FileName.ToString());
}

if
(this.myinfo.OriginalFilename.ToString().Equals("c onnector.exe"))
{
this.count++;
}

}
if (this.count != 1)
{
this.Close();
}
this.count = 0;

}

public static void Main()
{
Application.Run(new sylagent());

}
}
and when i execute my program i m taking this error
[code:1:dcfdf8a81c]
object reference not set to an instance of an object
[/code:1:dcfdf8a81c]

How can i fix it
Thanks
Posted Via Usenet.com Premium Usenet Newsgroup Services
----------------------------------------------------------
** SPEED ** RETENTION ** COMPLETION ** ANONYMITY **
----------------------------------------------------------
http://www.usenet.com

Nov 16 '05 #6
Thanks
Posted Via Usenet.com Premium Usenet Newsgroup Services
----------------------------------------------------------
** SPEED ** RETENTION ** COMPLETION ** ANONYMITY **
----------------------------------------------------------
http://www.usenet.com
Nov 16 '05 #7
Why does the timer's event handler rely on the Process[] myproc
created in the c'tor while the Dispose method creates its own
Process[]?

<HelpFile>
GetProcess - Overloaded. Creates an array of new Process components
and associates them with existing process resources.
</HelpFile>

If an existing process is killed, its associated component in the
array will still exist. The array element will have an object
reference set to an object that no longer exists.

regards
A.G.

On 19 Feb 2005 09:42:28 -0600,
da****@sylveria.gen-dot-tr.no-spam.invalid (Dakkar) wrote:
I have a code like this

using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Drawing;
using System.Data.Odbc;
using System.Text;
using System.Data;
using Microsoft.Win32;
using System.IO;
using System.Diagnostics;
using System.Net;

public class sylagent : Form
{
private Process[] myproc;
private Timer t1;
private FileVersionInfo myinfo;
private int count;
private System.ComponentModel.Container components = null;
private String program;

public sylagent()
{
myproc = Process.GetProcesses();
count = 0;
this.Size = new Size(300, 300);
this.Location = new Point(100, 100);
this.Visible = false;

this.t1 = new Timer();
this.t1.Interval = 1000;
this.t1.Start();
this.t1.Tick += new EventHandler(t1_tick);

}

protected override void Dispose(bool Disposing)
{
if (Disposing)
{
if (components != null)
{
components.Dispose();
}
}
Process[] procuo = Process.GetProcesses();
for (int i = 0; i < procuo.Length; i++)
{
if
(procuo[i].ProcessName.Equals("client"))
{
procuo[i].Kill();
}
}

base.Dispose(true);

}

public void t1_tick(object sender, EventArgs e)
{
for (int i = 0; i < myproc.Length; i++)
{
if (this.myproc[i].MainModule.FileName !=
null)
{
this.program =
this.myproc[i].MainModule.FileName.ToString();
}

if (this.program[0] == 'C' ||
this.program[0] == 'D' || this.program[0] == 'E' ||
this.program[0] == 'F' || this.program[0] ==
'G')
{
this.myinfo =
FileVersionInfo.GetVersionInfo(this.myproc[i].MainModule.FileName.ToString());
}

if
(this.myinfo.OriginalFilename.ToString().Equals(" connector.exe"))
{
this.count++;
}

}
if (this.count != 1)
{
this.Close();
}
this.count = 0;

}

public static void Main()
{
Application.Run(new sylagent());

}
}
and when i execute my program i m taking this error
[code:1:dcfdf8a81c]
object reference not set to an instance of an object
[/code:1:dcfdf8a81c]

How can i fix it
Thanks
Posted Via Usenet.com Premium Usenet Newsgroup Services
----------------------------------------------------------
** SPEED ** RETENTION ** COMPLETION ** ANONYMITY **
----------------------------------------------------------
http://www.usenet.com


Nov 16 '05 #8

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

Similar topics

28
by: Daniel | last post by:
Hello =) I have an object which contains a method that should execute every x ms. I can use setInterval inside the object construct like this - self.setInterval('ObjectName.methodName()',...
6
by: Martin | last post by:
I'd like to be able to get the name of an object instance from within a call to a method of that same object. Is this at all possible? The example below works by passing in the name of the object...
15
by: Carlos Lozano | last post by:
Hi, What is the right way to create an OCX COM component. The component is already registerred, but can't create an instance. I am using the reference to the interop module created. If I use...
3
by: Adam | last post by:
We have a web site that uses .vb for the web pages and .cs for a class module. We are getting the error in .NET 2.0 and VS 2005 beta 2. It does work with .NET 1.1. When trying to access a page...
4
by: Luke Matuszewski | last post by:
Here are some questions that i am interested about and wanted to here an explanation/discussion: 1. (general) Is the objectness in JavaScript was supported from the very first version of it (in...
12
by: Andrew Poulos | last post by:
With the following code I can't understand why this.num keeps incrementing each time I create a new instance of Foo. For each instance I'm expecting this.num to alert as 1 but keeps incrementing. ...
6
by: Shailen Sukul | last post by:
Observed a weird behaviour with object references. See code listing below: using System; using System.Collections.Generic; using System.Text; namespace PointerExceptionTest { /*
14
by: Philipp Reif | last post by:
Hi all, I've got a little hole in my head concerning references. Here's what I'm trying to do: I'm calling a function, passing the reference of a business object for editing. The function clones...
3
by: User1014 | last post by:
A global variable is really just a property of the "Global Object", so what does that make a function defined in the global context? A method of the Global Object? ...
2
by: Ralph | last post by:
Hi I don't understand why it's not working: function schedule(imTop){ this.tdImagesTop = imTop; } schedule.prototype.selectEl = function() { alert(this.tdImagesTop);
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: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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
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
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
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...

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.