Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008


all groups > c# > november 2003 > threads for thursday november 20

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

Getting XP Style look and feel
Posted by Abhi at 11/20/2003 11:24:26 PM
How do i get XP Style look and feel for Controls in C# window application. All the controls i am using are Custum controls designed by inheriting .NET Common controls....more >>

Which class is calling?
Posted by Greg Bacchus at 11/20/2003 10:13:16 PM
I have a base class with a method that is to be called in the constructor of the inheritting classes. Is there any way of determining, say, the Type of the class that is calling it. e.g. class A { public A() { AddStuff(); } protected void AddStuff() { ...more >>

IDisposable pattern
Posted by Frank Oquendo at 11/20/2003 10:09:53 PM
I see a lot of this: public void Dispose() { this.Dispose(true); } protected override void Dispose(bool disposing) { if (disposing) { yada.yada(); GC.SupressFinalize(this); } } My question is what's with the two implementations? Should you do this ...more >>

How to Authenticate NDS server using C#
Posted by Ram at 11/20/2003 9:54:57 PM
How to Authenticate NDS server using C# ...more >>

Collection passing between c# and VB 6
Posted by Ariani Hadi at 11/20/2003 9:41:16 PM
Hi all, I need some advice here regarding passing of collections between visual basic 6. I've got an application in vb and another in c#. I need to transfer the information created in the visual basic to update the application in c# constantly, so that both are synchronized all the time....more >>

Registry
Posted by Lou at 11/20/2003 9:01:13 PM
How do you read and Write to the reg in C#? -Lou ...more >>

MQ memory leak
Posted by José Joye at 11/20/2003 8:19:12 PM
Hi, I have implemented a Service that is responsible for getting messages from a MS MQ located on a remote machine. I'm getting memory leak from time to time (???). In some situation, it is easier to reproduce (e.g.: remote machine not available). After about 1 day, I get a usage of 300MB of m...more >>

Textfile beim Einlesen Zerstückeln?
Posted by Michael Schindler at 11/20/2003 8:14:14 PM
Ich habe es nun erreicht, ein textfile einzulesen das nun zeile für zeile im datagrid angezeigt wird. Nun wäre es toll wenn ich das textfile zum beispiel nach jedem blank in eine spalte zerstückeln könnte und meine frage hier wie geht sowas? Ich habe nun das ganze mit folgendem code im datag...more >>



Collection classes question
Posted by Will at 11/20/2003 7:42:01 PM
I have a set of parameter names and values (essentially key/value pairs) that I'm reading from a DB. I need to temporarily store these pairs so that I can later format them an write them to a file. I will not need to look up values in the collection - just reading them in and sptting them back ou...more >>

Treeview
Posted by JJ at 11/20/2003 6:30:21 PM
Hi, What's the command(s) to set a parent node then add a Child node? Thanks, JJ...more >>

? Add DescriptionAttribute to Methods
Posted by David Coleman at 11/20/2003 6:03:48 PM
Hi All, Can anyone tell me how to add the equivalent of DescriptionAttribute for Properties to a public class Method and its passed parameters so it is displayed through intellisense. Have found many references to the fact that it can be done but can up to now find no example of how. Help w...more >>

Question on Casting to a BaseType
Posted by Chris at 11/20/2003 6:03:15 PM
I created a control that derives from the System.Windows.Forms.Control namespace. I then created an interface to which this new control must adhere, so that I could require future controls to provide certain functionality. In my form code, I'm not going to be sure of what types of controls the...more >>

Some basic questions
Posted by p988 at 11/20/2003 5:44:41 PM
What is the purpose of Trace.AutoFlush in a window form app? In a window form app, why needed calling "InitializaComponent()"? What're accomplished by such call? Other questions are related to the code below: protected override void Dispose(bool disposing) { ... base.Dispose(...more >>

What would be a faster alternative to boxing/unboxing?
Posted by Mountain Bikn' Guy at 11/20/2003 5:34:50 PM
I have a situation where an app writes data of various types (primitives and objects) into a single dimensional array of objects. (This array eventually becomes a row in a data table, but that's another story.) The data is written once and then read many times. Each primitive read requires unbox...more >>

Launching a Batch file from C# (newbie)
Posted by plv at 11/20/2003 4:54:12 PM
Hi, I am very new to C#, how do I launch an external program? I mean something like the "_spawnl" functions in C++. I can't find anything in the documentation. Thanks! /p ...more >>

Appending text with newline in a textbox
Posted by Rein Petersen at 11/20/2003 4:50:43 PM
Hi All, I'm having a heckuva time trying to append lines into my multiline readonly System.Windows.Forms.TextBox I was expecting to simply do this: myTextBox.Text += "appending this line \n"; but it doesn't append a newline at the end of my string. It justs adds a little black box char...more >>

How to define this....
Posted by Alex Sanchez. at 11/20/2003 4:44:12 PM
Hi, If I have this : public struct SGPoint { public double X; public double Y; } public struct SGRect { public SGPoint Emin; public SGPoint Emax; } How do I define a constant ? Example: public class SGGlobals { public const S...more >>

Visual C# Standard
Posted by Mortel at 11/20/2003 4:40:38 PM
Hi, I have one question. If I have this product than I can make applications for sale ? I can make commercial programs ? I trying find information about but I can't find. Maybe this is product for education ? Thank's Boniek ...more >>

AxSHDocVw.AxWebBrowser && Microsoft.mshtml
Posted by Zürcher See at 11/20/2003 4:33:25 PM
I've wrote an application that use internet explorer to download some html page, to get the document I use the Microsoft.mshtml library. mshtml.IHTMLDocument3 Document=(mshtml.IHTMLDocument3)this.WebBrowser.Document; This program work fine under windows xp, but under windows 2000 i gives me ...more >>

Speeding up IIS (?) or C# apps in general (?)
Posted by Robert Wilkens at 11/20/2003 4:21:41 PM
Ok... This may be the wrong forum, but it's the first place I'm trying. I'm new to C# and just implemented the 3-tier Distributed application from Chapter 1 (the first walkthrough) in the "Walkthrough" book that comes with Visual Studio .NET 2003 Enterprise Architect. My first observation is...more >>

Office Add-In custom bitmap button
Posted by BC at 11/20/2003 4:03:34 PM
Hello, We are creating an Office add-in. We are able to display the add-in successfully. However, we followed a sample program, and it displays a FaceID = 1044 (which is not the bitmap of the button we want to display). We want to display our own custom bitmap. How do we display our own c...more >>

problem with encoding
Posted by Aurimas Norkevicius at 11/20/2003 3:59:18 PM
i write some messages of my project in lithuanian it has some specific characters. The problem is that i can write these characters and i can compile the project and compiled pocket pc applicastion displays the correctly. But the problem is that after i close the project and open it again some...more >>

shared assemblies and distribution
Posted by Dan at 11/20/2003 3:54:13 PM
Here's a scenario I'd like to discuss in order to setup my VS.NET IDE properly and be able to prepare a distribution: a) I have a windows forms C# app using 3 shared assemblies I developed to include various functions. The 3 shared assemblies are strongly named, and some of them are also use...more >>

results of a checkbox into sql database
Posted by Harold A. Mackey at 11/20/2003 3:52:49 PM
I'm having a time finding some examples of checkbox results in a database. I first tried setting up the fields as bit in the stored procedures. I have not been able to determine the output of a checkbox selection. It returns a true or false state. I need to know the type that it returns and how t...more >>

Capturing Control + Shift + Enter
Posted by vazz NO[at]SPAM mailinator.com at 11/20/2003 3:38:51 PM
I am trying to capture the key combination "Control + Shift + Enter" in a KeyDown event. I am able capture "Control + Enter" using (e.KeyCode == Keys.Enter && e.Modifiers == Keys.Control). How do I check if there are two Modifiers?...more >>

Interface question
Posted by george r smith at 11/20/2003 3:31:53 PM
I thought that you it is forbidden to create an instance of an interface. But a help example (search for Explicit Interface Implementation Sample) from visual studio has the following sample code: // Declare an instance of the English units interface: IEnglishDimensions eDimensions = (IEngli...more >>

Question regarding Response.WriteFile(String)
Posted by Robert Hanson at 11/20/2003 3:22:15 PM
Hi All, I am using the following: Response.WriteFile(strCompleteFileNameAndPath); Where the strCompleteFileNameAndPath contains something like "C:\\SimpleTest\\Bobtest.doc" and the ContentType is Application/msword. When prompted to save the file, I see the proper file type but the file ...more >>

Is there somewrong with CG?
Posted by Peter at 11/20/2003 3:18:09 PM
I'm try to check how CG free up memory in intesive allocation situation. But it seems that after an collection, the memory is a bit larger than last time. For example, from I run the code below for 100,000 cycle after the first collection the size is '28,228' after the last collect...more >>

XSLT Transform problems..embed -vs- file access
Posted by Greg Merideth at 11/20/2003 3:17:02 PM
I have an XSL file that I am using to transform some XML data using this method below. The problem is that if I use an embedded .XSL file in the .NET assembly, I get an error indicating that the URI is invalid, however if I open the file from the harddrive in the current directory, it wor...more >>

mouse event
Posted by Ryan Moore at 11/20/2003 2:53:18 PM
how can I trigger an event whenever the mouse is clicked in ANY control, panel, etc in a form? thnx ...more >>

Method vs Property performance
Posted by discussion NO[at]SPAM discussion.microsoft.com at 11/20/2003 2:53:01 PM
Hi, Since small method calls are inlined when the IL size is 32 or less. Take for example.. // Method (inlined) public bool getVal() { return someVal; } // propget public bool Val { ge { return someVal; } } Which is faster? If the method is ...more >>

Dataset cycle
Posted by JJ at 11/20/2003 2:34:23 PM
Hi All, I have created a oledbdataadapter/OledbConnection and dataset. I would like to cycle through all records that the dataset has to implant into a treeview as nodes. How do i do this? This is a win app. Thanks, JJ...more >>

Removing HTML characters while retreiving data from the database
Posted by renukasrivastava NO[at]SPAM hotmail.com at 11/20/2003 2:34:13 PM
Hello, I have to retrive 2 columns from the database which have HTML characters like &lt; &gt; (the less than"<" and greater than sign ">")in their data. Is there any function in C# which can do this to convert these characters back to "<" and ">" signs. Please tell me asap....more >>

do you know any text editor project with c#
Posted by 2003et at 11/20/2003 2:11:33 PM
I have to include a text editor in my project. Do you know any good editor project on the net? Thanks ...more >>

how to execute Socket.Select on more than the 64 default sockets number
Posted by osalehups NO[at]SPAM houston.rr.com at 11/20/2003 2:09:21 PM
I am trying to execute a Socket.Select() statement on an arraylist of sockets. The problem is that I can only go up to 64 sockets at a time. I know that I have to manupilate the FD_SetSize to increase the limit. How do you do that in C# in the .NET Visual Studio environmrnt....more >>

display boolean as Yes/No
Posted by Eric Gurney at 11/20/2003 2:09:20 PM
Is there a way to change the output of the ToString function for a boolean variable to display Yes/No? Thanks, Eric ...more >>

almost there - COM Dictionary
Posted by greg at 11/20/2003 2:05:59 PM
Hi I referenced in COM Dictionary object (like Scripting Dictionary) It has Items method that returns object What should I cast it to??? some collection? Ideas? SRSPLUSLib.SrsClass srs = new SRSPLUSLib.SrsClass(); srs.Startup(); SRSPLUSLib.IDictionary dic = srs.DomainInfo(domain,tld); ...more >>

HttpUtil
Posted by Wobbly Bob at 11/20/2003 1:20:11 PM
Hi, I can't seem to find this class that according to the docs is in System.Web. I am using .Net Enterprise 2003 with .Net 1.1. A lot of the classes that are documented as being in System.Web are in System.Net..? Rob. ...more >>

Access is Denied
Posted by Kulwinder Deol at 11/20/2003 1:08:03 PM
Hello, I'm new to .NET so bear with me as I ask a simple question. I'm attempting to utilise a component developed by another developer. Unfortunately when I try actually create an instance of the class I want I get an access is denied error. The exception stack is as follow; strExcep...more >>

Getting the Response.ContentType Prior to Response.WriteFile
Posted by Robert Hanson at 11/20/2003 1:02:03 PM
Hi All, I am checkinf to see if there is a way to determine the Response.ContentType of a file residing on the server in order to set that property prior to issuing the Response.WriteFile(FileName)? Thanks in advance!! Bob Hanson Centare Group Ltd. *** Sent via Developersdex http://ww...more >>

How do i comunicate to a device via IRDA.
Posted by Ajay Mahale at 11/20/2003 12:54:28 PM
Is the irda socket based api for windows platform specific ..the dotnet framework (non-compact :)) doesnot seem to support IRDA based communication.Can any one give me a few hinters as to how to achive this... Regards, Ajay ...more >>

use SendKeys.SendWait to send RTF into work
Posted by Logan McKinley at 11/20/2003 12:34:52 PM
I have an application that uses SendKeys.SendWait(...) to send RTF (formatting and all) to a word. I was hoping it would parse the formatting, therefore retaining the original formatting of the RTF but it treats the formatting information as standard text and displays it as normal. How do I te...more >>

Crystal Reports Data
Posted by Ing. Leandro Pérez Guió at 11/20/2003 12:32:03 PM
Hello: Can i fill a Report in runtime using my own dataset? Greetings. Leo ...more >>

Differences on GC.GetTotalMemory() with the task manager
Posted by Muscha at 11/20/2003 12:00:54 PM
Hello, When I print out the result of GC. GetTotalMemory(true) it's so much different from the one in task manager. Say for example GC.GetTotalMemory() returns: 721668 (~7MB) while in task manager my process shows at a whopping 50MB!!! This is weird .. am I missing something here? thanks,...more >>

Where all my memory has gone?
Posted by Muscha at 11/20/2003 11:31:50 AM
My c# application has gone beserk, it consumes 700MB memory griding my machine to a halt. What is the quickest way for me to find out what's happening? Where do all the memory has gone? /m ...more >>

COM object IDictionary interface
Posted by greg at 11/20/2003 11:13:23 AM
Hi I use a COM object to interface with domain search from SRS and it returns: SRSPLUSLib.SrsClass srs = new SRSPLUSLib.SrsClass(); srs.Startup(); SRSPLUSLib.IDictionary dic = srs.DomainInfo(domain,tld); They say it is Scripting.Dictionary object ++++++++++++++++++++++++++++++...more >>

Office Add-In
Posted by Jacques at 11/20/2003 11:10:57 AM
Hello, I'm creating an Office Add-in. The add-in works OK (I used the KB Article - 302901). The article states that you can change the add-in list of Office Apps by modifying the following registry key: HKEY_CURRENT_USER\Software\Microsoft\Office\OfficeApp \Addins\ProgID However, the re...more >>

C# Code Optimizing
Posted by coder5811 NO[at]SPAM yahoo.com at 11/20/2003 10:16:27 AM
Hi, Does anyone know of a good tool to help optimize C# code. Just basically tell you how long each line of code takes to execute, so you can easily find the bottle neck in the code. - Thanks ------------------------ http://www.xpcoder.net...more >>

Problem with generics and dynamic class creation
Posted by andrew_queisser NO[at]SPAM hp.com at 11/20/2003 10:14:00 AM
I've been trying to dynamically create a class DevT that's derived from a generic base GenBase<T>. It doesn't seem to work. I'm attaching a code sample below that illustrates the problem. CreateType() fails when the base class is a parametrized class, as in DevT : GenBase<int>. CreateType() w...more >>

Drag and drop of emails from outlook to my C# application
Posted by Johann Wagner at 11/20/2003 9:55:16 AM
Hello! I want to drop an email in my C# application. I get the drop event and the dataobject. But i cannot interpret the data in the dataobject. So i cannot get the email. I have found a code sample for getting appendix via drag&drop, but this doesn't work for the email, too. Can somebody give...more >>

How to find a Record Id in DataGrid ?
Posted by et NO[at]SPAM tourclub.ca at 11/20/2003 9:49:23 AM
Hello, I'm stuck with this question: Lets say I have a DataView with 10 columns, 5 out of which are displayed in DataGrid. Record Id is not displayed - so how do I figure out the Record Id of currently selected row in DataGrid ? Thanks a lot....more >>

SqlDataReader.GetFloat
Posted by John Straumann at 11/20/2003 9:49:01 AM
Hi all: I have a SQL Data Table with some values of type "float" (set in SQL table design). I am trying to read the values via a SqlDataReader (this app does not use DataGrids) and for some reason I am getting a "Specified cast is not valid" message. Anyone out there know wassup with that? ...more >>

Localization and RFC 1766
Posted by discussion NO[at]SPAM discussion.microsoft.com at 11/20/2003 9:43:38 AM
Has C# librarys a class of constants that referr to all the RFC 1766 langauge codes? Ie., "En-us" , "En-Uk" etc ...more >>

Partials and VSnet
Posted by discussion NO[at]SPAM discussion.microsoft.com at 11/20/2003 9:38:00 AM
Hi, Since we will be getting PARTIAL file types, how will the IDE file listing and class listing highlight this? Would we have to do workarounds in the filenames to indicate partials obviously or will the IDE have some kind of visual cue? Thanks ...more >>

HttpWebRequest keepalive
Posted by Cliff Harris at 11/20/2003 9:36:46 AM
I am trying to automate a series of form posts on a website. This site requires that my session be kept alive through successive posts (it basically tracks me by a sessionid, and if I get a new connection each time, I get a new sessionid). An HttpWebRequest object has a KeepAlive property that ...more >>

A couple questions of style
Posted by Daniel Billingsley at 11/20/2003 9:32:04 AM
I'm always curious on some of these style issues if there seem to actually be objective reasons for doing things one way or the other, so here goes for a little lighter discussion. 1) Default constructors. Do you always write a constructor for every class, even when it doesn't do anything sp...more >>

IWshRuntimeLibrary Question
Posted by Dale Magnuson at 11/20/2003 9:21:37 AM
I originally had all of my C# work on my local PC. Because this is dangerous I moved it off to a network drive. Since I did this I can no longer compile my code - I get the error below. The type or namespace name 'IWshRuntimeLibrary' could not be found (are you missing a using directive...more >>

Image quality c#
Posted by Zahid Khan at 11/20/2003 9:17:44 AM
I need little help in my situation. I am reading a graphic file (jpg) from disk and then resizing it and save resized image. What happens, it gets blured, I want to retain same quality so that small image won't be blur? any tips or idea or technique? Thanks in Advance....more >>

read time / date from computer clock??
Posted by Duncan Winn at 11/20/2003 9:13:25 AM
Does anyone know how to read the time and date from the computer clock in C# Thanks, Dunba ...more >>

once more about *.dbf files
Posted by Oleg Yevsyukov at 11/20/2003 8:50:16 AM
I want to use the next code: string connString = "Provider=MSDASQL.1;" + "Persist Security Info=False;" + "Extended Properties=\"DSN=&#1060;&#1072;&#1081;&#1083;&#1099; dBASE;" + "DBQ=D:\\C#\\I762_DBF\\DBF;" + "DefaultDir=D:\\C#\\I762_DBF\\DBF;" + "DriverId=533;" + "MaxBufferSize=2048...more >>

int to binary
Posted by Dave Searle at 11/20/2003 8:26:42 AM
Is there an easy way to get the binary representation of an int?...more >>

Macros and C#
Posted by alvinbj NO[at]SPAM hotmail.com at 11/20/2003 8:09:59 AM
Is it possible to code VS Macros in C#? By default they all seem to be VB....more >>

Custom DataGridTextBoxColumn
Posted by woutervu NO[at]SPAM hotmail.com at 11/20/2003 7:56:58 AM
Hello all, currently I am building a customized DataGridTextBoxColumn class. I wish to override the GetMinimumHeight() method. I think this method is being called by the DataGrid for each cell in the grid. What I ofcourse want is to resize the height of rows according to their content. Wh...more >>

Iterators
Posted by alvinbj NO[at]SPAM hotmail.com at 11/20/2003 7:53:43 AM
Will it be possible to have more than one Iterator in a type?...more >>

WorkerThread and Exceptionhandling
Posted by javadeveloper NO[at]SPAM web.de at 11/20/2003 7:30:20 AM
Hi, i have the problem that a background WorkerThread is calling Objects remote (.NET remoting). Now if the conection is closed my Thread gets an exception. But the Exception should be handled by my Application. So how can i bubble(rethrow) an Exception in my background Thread so that the ...more >>

Acessing a textbox
Posted by thorsten.moeller NO[at]SPAM premiere.de at 11/20/2003 7:01:52 AM
Hi, i have one file with all the UI stuff and one file with some classes doing several things. One of this classes should handle errors and update a textbox in the ui. How do i access this textbox when my UI is in a class called MainForm?? Thanks for any ideas! Cheers Thorsten...more >>

c# data type declaration
Posted by ditwal001 at 11/20/2003 6:58:29 AM
hi folks which datatype declaration is to be preferred in c# .net? ex. System.String sTemp = ""; System.Int64 = 0; or string sTemp = ""; int = 0; what is differentiated thereby? thanx and have a nice day....more >>

Error Reading from a Text File
Posted by Dave Bailey at 11/20/2003 6:57:46 AM
I have added a text file to a C# Web Project. I have placed an oledbconnection string into the text file. I can read the information and place the connection string into a text box which is not visible. When I load the connection string from the text box as follows: string connStr = ...more >>

Char representation in byte
Posted by Peter Krikelis at 11/20/2003 6:52:34 AM
Hi, I have a problem converting chars that are represented in more then 7F(in hex). I need to convert char to byte. When I cast chars into bytes it is no problem when chars are <= 7F(in hex), however when I do same thing to for example char (%divided by infinity which is 89(in hex) it ...more >>

shrinking controls
Posted by phknox at 11/20/2003 6:45:42 AM
Due to a HD crash, I had to reinstall VS.net 2002. Now when I build my c# project, the controls on my windows form shrink. Each time I build, the controls shrink. I can resize them, but they still shrink. Anyone have a suggestion as to what the problem is? Thanks, phknox...more >>

\r\n being replaced to \n when passed to webservice
Posted by Bugged at 11/20/2003 5:34:15 AM
I have a class and one of the properties is a string. Stored in this string is the contents of a multiline textbox. All is fine except for when the class object is passed to a webservice to be saved in the database. Once passed to the webservice all instances of \r\n (Environment.NewLin...more >>

Download binary file (http)
Posted by eelector NO[at]SPAM hotmail.com at 11/20/2003 3:56:27 AM
How can I download a binary file (like .doc or .pdf) from http to my harddrive using the .net framework? WebRequest objRequest = System.Net.HttpWebRequest.Create(url); objResponse = objRequest.GetResponse(); BinaryReader bsRead = new BinaryReader(objResponse.GetResponseStream() FileStream fs ...more >>

Can someone tell me how to drag and/or resize a borderless form?
Posted by MyNameIsnt at 11/20/2003 3:42:29 AM
Thanks if you can help me out. It is for the same source I posted already (which I did figure out the problem :))...more >>

FedEx Integration in .NET Environment
Posted by someone at 11/20/2003 2:29:06 AM
Does anyone have any experience integrating with FedEx via C# and ASP.NET? I am really frustrated with the lack of help from FedEx. Their example ASP.NET code consists of an empty form and a C# file that uses their objects. Thanks, Mike Schore...more >>

C# inheritance question from a C++ coder
Posted by darksquid42 NO[at]SPAM hotmail.com at 11/20/2003 1:21:34 AM
Hi folks, I'm trying to do the C# equivilent of the following and it's driving me up the wall. // assign base-class portion of an object to a given reference class base { public: int a; }; class derived : public base { public: int b; }; void main(void) { derived d; ...more >>

extern and override specifiers?
Posted by codymanix at 11/20/2003 12:49:14 AM
Why can a method have the specifiers extern and override together in its signature? A extern method is a function called from a native dll. but how could i override a function??? The same is for extern and the unsafe-modifier - aren't extern functions alwys "unsafe" in the sense of "non-dotnet-...more >>

bit to bool
Posted by Mike at 11/20/2003 12:44:51 AM
Greeting, i receive from db parameter in bit format and tried to convert it to boolean: bool boolBhcg=(bool)prmBhcg.Value; as result i receive msg: Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more informati...more >>

insert mail into outbox of OE
Posted by Ivo at 11/20/2003 12:38:23 AM
Is there a way of inserting a mail into OE's outboox? ...more >>


DevelopmentNow Blog