473,666 Members | 2,299 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Reference error!

Hi,
I have this project it has a folder that it's supposed to read but when
I run an error occurs the type or namespace name src could not be
found(areyou missing a using directive or an assembly referrence?).
This folder is src it contains a folder called controls and in controls
that's where one finds an object and I think It's a graph because the
code looks like this.
public src.controls.co nt dngchart;

// Set our axis values
dngchart.YAxisV alues = iValue;

// Set our axis strings
dngchart.YAxisI tems = sItems;

// the colors
dngchart.gcolor s=mags;

// Provide a title
dngchart.ChartT itle = "<b>Invento ry Breakdown:</b>";

// Provide an title for the X-Axis
dngchart.XAxisT itle = "(units display actual numbers)";
What could this be?
Thanks

Jan 22 '07 #1
5 1018
Likely, folder src contains a project that you can add to your project as a
reference. Right click your project in the solution explorer and select "Add
reference".

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
"rcoco" <nc******@yahoo .cawrote in message
news:11******** *************@q 2g2000cwa.googl egroups.com...
Hi,
I have this project it has a folder that it's supposed to read but when
I run an error occurs the type or namespace name src could not be
found(areyou missing a using directive or an assembly referrence?).
This folder is src it contains a folder called controls and in controls
that's where one finds an object and I think It's a graph because the
code looks like this.
public src.controls.co nt dngchart;

// Set our axis values
dngchart.YAxisV alues = iValue;

// Set our axis strings
dngchart.YAxisI tems = sItems;

// the colors
dngchart.gcolor s=mags;

// Provide a title
dngchart.ChartT itle = "<b>Invento ry Breakdown:</b>";

// Provide an title for the X-Axis
dngchart.XAxisT itle = "(units display actual numbers)";
What could this be?
Thanks

Jan 22 '07 #2
You don't give a lot of info about how your project is structured, or
where - exactly - the error occurs. Usually this type of error occurs at
compile time, but you say, "When I run ...". So I don't really understand
that.

Assuming for the moment that the error occurs at compile time on the first
line you give:

public src.controls.co nt dngchart;

(Which presumably is a member variable of some class or other)

Have you referenced the assembly that contains the class src.controls.co nt?

If not you will have to add such a reference before your project will
compile.

If the error occurs at runtime (i.e. the project compiles without errors),
then please let us know what happens when you run the project through the
debugger - i.e. on what line does the error occurs, as well as giving some
surrounding lines for context, and the current values of all the variables
that you think are of interest.

HTH
Peter

"rcoco" <nc******@yahoo .cawrote in message
news:11******** *************@q 2g2000cwa.googl egroups.com...
Hi,
I have this project it has a folder that it's supposed to read but when
I run an error occurs the type or namespace name src could not be
found(areyou missing a using directive or an assembly referrence?).
This folder is src it contains a folder called controls and in controls
that's where one finds an object and I think It's a graph because the
code looks like this.
public src.controls.co nt dngchart;

// Set our axis values
dngchart.YAxisV alues = iValue;

// Set our axis strings
dngchart.YAxisI tems = sItems;

// the colors
dngchart.gcolor s=mags;

// Provide a title
dngchart.ChartT itle = "<b>Invento ry Breakdown:</b>";

// Provide an title for the X-Axis
dngchart.XAxisT itle = "(units display actual numbers)";
What could this be?
Thanks

Jan 22 '07 #3
That was actually what I tryed at first. Can someone create a .dll for
a folder?

Jan 22 '07 #4

Sorry I made a mistake the error comes at the compiling time.

Jan 22 '07 #5

Sorry I made a mistake the error comes at the compiling time.

Jan 22 '07 #6

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

Similar topics

2
10541
by: Pkpatel | last post by:
Hi, I keep getting this error every time I try to load crystalreportviewer on a webform with a dataset. Here is the error: -------------------------------------------------------- Server Error in '/Cr_Dataset' Application. ----------------------------------------------------------- ---------------------
4
4546
by: Todd | last post by:
Is it possible to pass an argument by reference through an event in C++ managed code? For example, can I do the following? public __gc class MyClass : public Control { public: __event void MyEvent(bool &Cancel);
110
9899
by: Mr A | last post by:
Hi! I've been thinking about passing parameteras using references instead of pointers in order to emphasize that the parameter must be an object. Exemple: void func(Objec& object); //object must be an object instead of
6
5613
by: trexim | last post by:
Hi, I am trying to create a Web Reference for CSTA using the URL http://www.ecma-international.org/standards/ecma-348/csta-wsdl/csta-wsdl-all-operations.wsdl Visual .Net complains that: " The document was understood, but it could not be processed. - The WSDL document contains links that could not be resolved. - There was an error downloading
2
4120
by: Zippy | last post by:
Some months ago, we requested help from this newsgroup on how to replace the library reference of a database with another library reference, prior to creating an MDE. I got the following answer from Stephen K. Young, which does the job: >In message <ahjurk$t18vo$1@ID-65843.news.dfncis.de>, Stephen K. Young ><s@k.y.invalid> writes >Using automation you can temporarily replace a developer library reference >with a compiled library...
2
3010
by: Steve Jorgensen | last post by:
When writing VB or VBA code that works with databases or other external libraries that cannot be trusted to automatically do the right thing when references to their objects are arbitrarily released, some thought must be put into how to make sure the objects will all be closed and released in the correct order, even in the result of an error. This requirement can make our code really ugly, even following the best of commonly known best...
4
1865
by: dhnriverside | last post by:
HI guys I've just written my first independent namespace for my library (yay me!). However, on trying to add it to my website project, it causes an error when I look at the website. It compiles ok though... The error message is... "The located assembly's manifest definition with name 'HudsonNash.Utils.Security' does not match the assembly reference"
2
2615
by: msnews.microsoft.com | last post by:
I am currently trying to follow the Que Publishing exam guide to the Microsoft Exam 70-320. I followed the guide to a tee, but when I try to add a web reference to my server side soap extension it gives me the following error:- An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message:...
51
4435
by: Kuku | last post by:
What is the difference between a reference and a pointer?
3
11595
by: prakash.mirji | last post by:
Hello, I am getting below mention linker error when I tried to link my class test.C I use below command to compile test.C /usr/bin/g++ -g -fpic -fvisibility=default -D_POSIX_SOURCE -DTRACING - D__EXTENSIONS__ -D__RWCOMPILER_H__ -D_REENTRANT -D_RWCONFIG=8s - D_RWCONFIG_12d -D_RWSTDDEBUG -DRWDEBUG -o test1 test1.o -L/lib -
0
8356
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8781
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8550
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8639
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7385
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6192
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5663
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4198
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2769
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.