| Thread | Last Post | Replies |
|
| Faxing | 06 May 2004 09:56 GMT | 1 |
Does somebody know why the foolowing code throws an System.Runtime.InteropServices.COMException exception with the message of 'Unspecified error'? FaxServerClass fxsvr = new FaxServerClass(); fxsvr.Connect(""); // null for local fax server otherwise a computername
|
| Usage of AppDomain.CreateInstanceFromAndUnwrap method | 06 May 2004 09:41 GMT | 1 |
i am trying to load a Windows Form Assembly at run time to a seprate AppDomain. I don't want that this Assembly to be loaded in the Caller Domain, so i used the metho CreateInstanceFromAndUnwrap instead of AppDomain.Load(.. // I am passing the Control's parent through the ...
|
| asp.net creates a DLL in wwwroot\xxx\bin -why is it there? | 06 May 2004 04:12 GMT | 3 |
I am studying for 70-305. I noticed that IIS uses the DLL in C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705\Temporary ASP.NET Files\etc. If this is so, then why is a dll also created in the
|
| How to map network drive in windows service without using API in C# | 06 May 2004 01:55 GMT | 1 |
hihi I need to use windows service to connect network drive, so I cannot use "net use" to connect network drive. I hope it can connect the network drive under windows service. Therefore if I don't want to use API WNetAddConnection function, any C# Class can do it directly thx...
|
| Code model for ASP.NET (for automation) | 06 May 2004 01:07 GMT | 1 |
With Visual Studio.NET, it is possible to get the code model for a class and add/remove methods, properties etc, but is this functionality available for an aspx file? What I'm trying to do is create a macro that modifies some tags in an aspx file.
|
| Delegate and Thread Problem | 06 May 2004 01:06 GMT | 1 |
I have a Delegate based Project that contain classes whose purpose is to instantiate objects of another Project (or Library) using Delegates. I have a client application that uses this Delegate based project to call library method asynchronously. Delegate based project returns the ...
|
| creating .pdf files dynamically without 3rd party components | 06 May 2004 00:57 GMT | 2 |
Is there a way to save a page/some data(read variables) as a .pdf files without using 3rd party components? Any Sample code would be really helpful. Thanks in Advance.
|
| C# LDAP libraries and ASP.NET | 06 May 2004 00:52 GMT | 1 |
I am trying to authenticate users against a Novell LDAP v3 using ASP.NET and C# LDAP classes. I have compiled the files to one assembly and reference it in my code. My problem is the following: I can connect successfully to the LDAP server, but as soon as I try to Search or Bind,
|
| Pound sign and everthing following are get lost when using QueryString for value transfering in ASP | 05 May 2004 20:56 GMT | 2 |
(Type your message here) I have two asp script files A.asp and B.asp. In A.asp, I am doing database query. The query string looks like "SELECT * From Where PublishDate Between #02-02-04# And #03-03-04"
|
| How to cancel a pending BeginReceive ? | 05 May 2004 20:32 GMT | 1 |
What is the proper way to cancel a pending BeginReceive/EndReceive ? Can it be done without generating an exception ? Currently I shutdown and close the socket. The blocking "EndReceive" throws System.ObjectDisposedException.
|
| Signing Assemblies | 05 May 2004 19:07 GMT | 1 |
Using VS .Net 2003 1. I'm confused on how to remove compile errors below. Not sure if I need/how to use Al.exe and Gacutil.exe tools with VS, etc.
|
| Forms, threads, and BeginInvoke | 05 May 2004 19:00 GMT | 2 |
Can someone explain this to me. I have a function that is called asynchronously using a delegate, which has a callback function. In the callback function, I want to create a new form. However, the call to BeginInvoke on the delegate creates a new thread which the form is
|
| Create Access File through ODBC | 05 May 2004 16:14 GMT | 3 |
How to create new empty MS Access file through ODBC, and next how to create new table? Thanks
|
| Send fax | 05 May 2004 15:53 GMT | 3 |
Does anybody know how to send a fax from c#. Is there any suppport for sending faxes? Thanks
|
| Thread question | 05 May 2004 15:30 GMT | 20 |
Child threads aren't allowed to touch main thread objects. The session object in ASP.NET belongs to the main thread. The way around this is to pass in a reference in the thread constructor so that the child thread can use the object safely since there is no control.invoke ...
|