
|
I'm unsure exactly what you are asking, but maybe I can shed some light for you anyway.
The project file is just XML and a regular included source file may look like this:
<Compile Include="CompileException.cs" />
A linked (Add as link) file may look like this:
<Compile Include="..\PIEBALD\Types\XmlNode.cs">
<Link>XmlNode.cs</Link>
</Compile>
Because it's XML, you can edit it, but you should make a backup and be careful.
I use linked files a lot.
|
|
|
|

|
You get perfectly the point! Very helpful
Thanks a lot
|
|
|
|

|
hi guys , im using zeromq dll for making server/client program . the program works fine . but i want to run the setup of the program that i have made , in other computer with(win xp). it w'll throw an error
System.DllNotFoundExpection:Unable to load Dll 'libzmq':The specified procedure could not be found.(Exception from HRESULT:0x8007007F)
at ZeroMQ.Interop.zmq_init(Int32_threads)
at ZeroMQ.ZmqSocket..Ctor(int32 type,Nullable 1 context)
at ZeroMQ.ZmqDealerSocket..ctor()
at ChatClient.Client.Main(string[] args) in c:\my Development\ZeroMq\ZeroMQ_ChatTest\ChatClient\Client.cs:Line 13
but i have already attach the libzmq in the folder . so can any one tell me what's the problem ?
and sth more , it'll not throw an error if i run the setup on win 7 .
|
|
|
|

|
Are you sure you have installed/available all the dependencies in the other computer. like .Netframework,runtime libraries etc.The error looks like failed to load the libzmq.dll because of an error inside the dll. is there any other dll referred inside the libzmq.dll also copied in the destination PC?
Jibesh V P
|
|
|
|
|

|
Nice. good to hear that.
Jibesh V P
|
|
|
|

|
Hi guys, first time here. i really didn't know where to post this question on the C# forum or JavaScript Forum, if i am wrong i apologize.
well here is my question. I am creating a share point custom web part using Visual studios 2010. (jquery Live Search web part). the code is in the same file.
how can i call a C# function through JQuery Ajax call?
function liveSearchResults(value)
{
$.ajax({
type: "POST",
url: "DONT KNOW WHAT GOES HERE",
cache: false,
data: value,
contentType: "application/json; charset=utf-8″,
dataType: "json",
success: function(msg) { alert("success");
}
});
}
thank you guys in advance
|
|
|
|

|
The Url is the path to the web service - so, all you need to do is browse to the web service definition in the browser and copy that.
|
|
|
|

|
How is that the "static & dynamic polymorphism" is used in C# and how they are distinguished from each other?
|
|
|
|