|
Hii All,
I wanna know how can i send mail thru my pc without using any email client.
i tried using SMTPMail object. in that i specified the SmtpServer as "localhost". On doing so all my mails are delivered into "c:\Inetpub\mailroot\Queue\" directory.
Now i want to know how d i send these mails to xyz@yahoo.com or at hotmail address.
Please someone help me.
Tushar
|
|
|
|
|
Um, do you know C#? If so, I can give you some refrences...
Framework SMTP Class:
System.Web.Mail Namespace[^]
CodeProject Examples:
SNTP Client in C#[^]
Sending Mail Using C# via SMTP[^]
But really; Before looking at all that, you should read this...
The SMTP Specification[^]
I havn't read this particular one, but I did read the POP3 specification. It gave me a much clearer understanding of what's going on. So, do that.
And always remember and never forget... SEARCH GOOGLE. There are tons of examples on the net too, with lots of 3rd party components also.
I hope this helps... I'm not sure if I under stood you correctly... "...without using any email client." With out a client at all, with out Outlook, a console window, service? i'm confused...
/\ |_ E X E GG
|
|
|
|
|
|
You have to setup your SMTP Virtual Server in the Internet Information Manager snap-in (in your Administrative Tools in your Control Panel) to forward mail accordingly. Otherwise, the server doesn't know where to send mail.
-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
|
|
|
|
|
Hii
Thanx for this.
But actually i didn't unerstand anything in this GEEK code. COuld u please tell me in detail how to configure SMTP virtual server so that i can send mails to Internet mail accounts like Yahoo and Hotmail.
|
|
|
|
|
Um, yeah, that's called a signature - it wasn't part of the message.
As I said, open Internet Information Manager and you should see your SMTP Virtual Server. Right-click and select Properties, then RTFD. There's far too much to cover in a forum. You have to understand basic SMTP implementation, but the docs will help. As always, just hit F1.
-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
|
|
|
|
|
like the title:
I use DataTable to set windows form datagrid datasource ,
i want to create a summary Row for windows form datagrid,
but i donot know how to do it?
who can give me a example using C#??
thank you very much??
|
|
|
|
|
What do you mean by summary row? You mean you wanna filter your datatable?
tablename.DefaultView.RowFilter = "filter expression";
Mazy
No sig. available now.
|
|
|
|
|
This has been asked before, and as I told the previous person, you should consider using Label controls below the DataGrid . If you have a data-bound DataGrid and programmatically add a row, you must do so to the DataGrid.DataSource , which will add the row. If you then update that data source (say, to a database or XML file), it will contain that summary row. This is hardly what you want, I assume.
So, just use some values below it. That's what we do in our application, and there are many other benefits as well. First, it separates the summary of columns making it easier to see, and it doesn't scroll or resize like a DataGrid could, thus hiding certain summations. Second, one rarely needs to summarize ALL fields (for example, how would you summarize a name field for a person, company, etc.?), so just include enough labels to summarize what you need.
To summarize columns, just enumerate the rows and keep track of what you need to, then assign that value (or whatever) to a label that shows the value (or, if you use one label for the text label and value, use String.Format or something to assign the "Label: Value", "Label=Value", or whatever format to the Label.Text property).
-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
|
|
|
|
|
hi
I get everytime a Exception error shortly after successfully compiling
i just get it, when the compile mode is on release and not debug
this is the error (translated by me, orign was german):
An not controlled Exception of the type 'System.ArgumentException' occurred in system.drawing.dll.
Additional Information: false paramter used.
that's the error, even before Form1_Load can happen
the disassembly also tells me something
Adress: System.Drawing.Bitmap..ctor
and a yellow arrow is beside of the following line:
00000067 push dword ptr [ esp + 10h ]
posting the sourcecode is a very bad idea, more than 1200 lines in 5 different files and no part is highlighted when the eception occours
i hope anyone can help me with handling the error
|
|
|
|
|
beta3 wrote:
that's the error, even before Form1_Load can happen
It may happent in your InitializeComponent(),You may use some GDI+ there.
Mazy
No sig. available now.
|
|
|
|
|
thx, that was the error
and now everything is working
|
|
|
|
|
You sent some code for me. Where was the problem in your codes?
Mazy
No sig. available now.
|
|
|
|
|
there wasn't a real program, just a little mistake, because i forgot something
but i could solve it by myself
|
|
|
|
|
Hi,
Any ideas on how to exclude documentation of private and internal members
of the classes while generating docs from the "Tools|Build Comment Webpages.."
option of VS.Net?
Thanks,
Sridhar.
|
|
|
|
|
That utility sucks. Use a good - and free - one like NDoc[^]. A lot of people and companies use it. It can generate both HTML Help and Help 2 documentation (the latter is what VS.NET, MSDN Library, and a couple others use now), as well as a few other formats. By default, private and internal members are documented, but you can opt to include or exclude these individually (as well as protected and public members...and many, many other options!).
-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
|
|
|
|
|
Hi Heath,
Thanks a lot for the info. i was trying to build the .sln provided by the
NDoc community but couldn't add the MSHelpCompiler.dll to the references.
Anyways, i installed it and could use it now; it's pretty cool.
thanks once again. if u have any idea of how to get the dll i mentioned plz
let me know.
i was busy with some thing else so couldn't let you know abt this early.
tks,
Sridhar.
|
|
|
|
|
Just use the 1.2 installation at http://ndoc.sourceforge.net/download.html[^]. We're always updating features and testing new things, and building any open-source project with the latest non-stable code is at your own risk. I even use the installation for my actual documentation and I actually write code for the project (though it's been a while).
-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
|
|
|
|
|
Yeah, i am doing that.
Thanks.
|
|
|
|
|
Hi
I know...
...How to read the data of an image from a disk file and store it to an XML file after the data is encoded to base64.
The Problem is...
...To read an Image/picture object from a PowerPoint presentation and store the data (base64 encoded) in an XML file.
Thanks in advance
Mohammed Ali
2nd Flr, Gopur Apts,
Ghole Rd, Shivaji nagar,
Pune - 5. (MH) India.
|
|
|
|
|
Look over the PowerPoint and Office APIs. You could use VBA in PowerPoint to write a macro that does something like this. If you want to read-in the PPT from your program, you'll have to interop the PowerPoint and Office assemblies (there are PIAs - primary interop assemblies - for Office apps on Microsoft's site). You should then read the Office Programming documentation. If I remember right, you can also use the Microsoft.VisualBasic.Compatibility assembly (even from C# - it's just IL after all) to use the IPicture (or is it IStdPicture ? ...don't remember) if PowerPoint still uses that.
-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
|
|
|
|
|
I have all the Office and other PowerPoint Interops added to my C# Library.
And I am able to read all the other shapes of PowerPoint and save to XML except the Images/Pictures.
I wanted to read the contents of the Images/Pictures that are available in the presentations and store the Base64 encoded data in XML.
Hope I made the issue a little clear now. Sorry for ambiguity.
Project Manager
INTRINSIC - An IMC Company
2nd Flr, Gopur Apts,
Ghole Rd, Shivaji nagar,
Pune - 5. (MH) India.
|
|
|
|
|
There was no ambiquity, I knew exactly what you were talking about. What I'm saying is that you should read the documentation for the property type that the image/picture properties return. That may have a Save method or something. Keep in mind, however, that you can't just serialize the type returned - you have to serialize the image represented by the property type, which is implementation specific. For example, I'm pretty sure you can save an image to a file but you might have to read that in and then base64-encode it. It probably supports writing to a stream, but this is a COM IStream , not a .NET Stream which works differently (so you'd have to define a COM-like IStream and implement that, perhaps wrapping the .NET Stream object).
What I can't figure out is how the Shape ties into this. Just looking at the interop assembly, it would seem that a picture is translated to a Shape, which might not preserve the actual image format (so, if you try to create an Image from a stream, it wouldn't work because it's no longer a JPG, BMP, GIF, etc.).
All I can say is read the PowerPoint and Office object model documentation. I couldn't find much, but I'm not sure I have the PowerPoint programming documentation installed (although I thought I specified a Complete install).
-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
|
|
|
|
|
I have all the Office and other PowerPoint Interops added to my C# Library.
And I am able to read all the other shapes of PowerPoint and save to XML except the Images/Pictures.
I wanted to read the contents of the Images/Pictures that are available in the presentations and store the Base64 encoded data in XML.
Hope I made the issue a little clear now. Sorry for ambiguity.
Mohammed Ali
|
|
|
|
|
Hi
This is seema..I am intended to design user interface in C#.net for some hardware.For that I have to draw 24 filled rectangles on the form.I can do it simply using FillRectangle().But my aim is to draw one rectangle using some user defined function then when it will appear on the form then i want to copy it and past it on the form itself to creat more 23 rectangles and set there properties according to my wish(like length width and ID).Again I have to do specific event like mouse click event on those rectangles....So can anyone please suggest me how to do it?...I went through many site but not getting exactly what I want.PLZ PLZ tell me if anyone knows....
Regards.
Seema
seema kumari
|
|
|
|