Click here to Skip to main content
15,900,725 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: How to emebed a html file in another html file Pin
The Man from U.N.C.L.E.18-Nov-09 2:52
The Man from U.N.C.L.E.18-Nov-09 2:52 
GeneralRe: How to emebed a html file in another html file Pin
Simon P Stevens18-Nov-09 4:55
Simon P Stevens18-Nov-09 4:55 
AnswerRe: How to emebed a html file in another html file Pin
Not Active18-Nov-09 2:08
mentorNot Active18-Nov-09 2:08 
QuestionExcel user defined function in C# Pin
dims1217-Nov-09 4:46
dims1217-Nov-09 4:46 
AnswerRe: Excel user defined function in C# Pin
EliottA17-Nov-09 5:28
EliottA17-Nov-09 5:28 
AnswerRe: Excel user defined function in C# Pin
The Man from U.N.C.L.E.17-Nov-09 6:42
The Man from U.N.C.L.E.17-Nov-09 6:42 
AnswerRe: Excel user defined function in C# Pin
Richard Tanios1-Dec-09 18:06
Richard Tanios1-Dec-09 18:06 
Questioncalling of dll from another dll when both are in same folder Pin
vikas shukla17-Nov-09 0:01
vikas shukla17-Nov-09 0:01 
my first dll is
using System;
namespace myfirst
{
public class demo
{
public string getmessage()
{
return "Hi!How Are You";


}
}
}

in folder e:\prac
and more dll is
using System;
using myfirst;
namespace mysecond
{
public class demo1
{
public string getmessage1()
{
demo d=new demo();
string str1=d.getmessage();
Console.WriteLine(str1);
}
}
}
and now i am using csc /t:library mysecond.cs
then i have following error and problem was same.please help me

mysecond.cs(2,7): error CS0246: The type or namespace name 'myfirst' could not
be found (are you missing a using directive or an assembly reference?)
AnswerRe: calling of dll from another dll when both are in same folder Pin
Luc Pattyn17-Nov-09 1:33
sitebuilderLuc Pattyn17-Nov-09 1:33 
AnswerRe: calling of dll from another dll when both are in same folder Pin
Shameel17-Nov-09 2:39
professionalShameel17-Nov-09 2:39 
Questionseparating the messages received in socket communication Pin
k3rkiran16-Nov-09 22:21
k3rkiran16-Nov-09 22:21 
AnswerRe: separating the messages received in socket communication Pin
Richard MacCutchan17-Nov-09 2:59
mveRichard MacCutchan17-Nov-09 2:59 
AnswerRe: separating the messages received in socket communication Pin
Mark Salsbery17-Nov-09 12:25
Mark Salsbery17-Nov-09 12:25 
QuestionWebBrowser component av hooking events Pin
invictus316-Nov-09 20:27
invictus316-Nov-09 20:27 
QuestionFailed to add attachment to Mailitem Pin
jsturma16-Nov-09 14:17
jsturma16-Nov-09 14:17 
QuestionSet PDF->Document Properties->Security->Signing With iTextSharp Pin
Polymorpher16-Nov-09 13:55
Polymorpher16-Nov-09 13:55 
AnswerRe: Set PDF->Document Properties->Security->Signing With iTextSharp Pin
junaid1096-Jan-11 18:10
junaid1096-Jan-11 18:10 
QuestionCreare report Word in C# .NET 2005 Pin
dv377316-Nov-09 6:24
dv377316-Nov-09 6:24 
AnswerRe: Creare report Word in C# .NET 2005 Pin
Dave Kreskowiak16-Nov-09 6:32
mveDave Kreskowiak16-Nov-09 6:32 
GeneralRe: Creare report Word in C# .NET 2005 Pin
Richard MacCutchan16-Nov-09 7:31
mveRichard MacCutchan16-Nov-09 7:31 
AnswerRe: Creare report Word in C# .NET 2005 Pin
CPallini16-Nov-09 9:25
mveCPallini16-Nov-09 9:25 
AnswerRe: Creare report Word in C# .NET 2005 Pin
Pete O'Hanlon16-Nov-09 9:37
mvePete O'Hanlon16-Nov-09 9:37 
AnswerRe: Creare report Word in C# .NET 2005 Pin
Luc Pattyn16-Nov-09 9:54
sitebuilderLuc Pattyn16-Nov-09 9:54 
AnswerRe: Creare report Word in C# .NET 2005 Pin
dv377317-Nov-09 3:08
dv377317-Nov-09 3:08 
GeneralRe: Creare report Word in C# .NET 2005 Pin
dv377317-Nov-09 13:31
dv377317-Nov-09 13:31 

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.