From: rji@cheetah.inmos.co.uk (Richard Ingram)
Newsgroups: uk.misc
Date: Mon Aug 14 10:08:32 1995
Some cencorship loving bore wrote :
> In article <GEVANS.95Aug14094119@mvagusta.uk.tele.nokia.fi> gevans@mvagusta.uk.tele.nokia.fi (Gareth Evans) writes:
>
> His sysadmin is also next to use...
more >>
Hi;
If I want to have an image in my html mail - how do I set that up? I don't
want it as an attachment, I want it as a <img ...> in the html message.
--
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com
Cubicle Wars - http://www.windwardreports.com/film.htm
...
more >>
does anyone see what is wrong with my .gif download logic? no matter what
image url i try it downloads a junk file that can't be opened in any paint
program.
System.Net.WebRequest myRequest = System.Net.WebRequest.Create(url);
System.Net.WebResponse myResponse = myRequest.GetResponse();
S...
more >>
how to get the System.Drawing.Point of FormStartPosition, e.g. if i want to
recenter the form on the screen at some point other then startup.
...
more >>
Hi;
I strongname all of my .NET DLLs and .EXEs. I signcode all DLLs, EXEs, and
my MSI - even the non .NET ones.
When installing on Windows XP it all works as expected. But on Vista I think
it wants more. I get prompted during setup on my bootstrapper.exe program:
Ins7A3A.tmp
Windward Stu...
more >>
Hi;
First problem - this works:
// MemoryStream html ... is created and is 11004 bytes long, buffer is 16K
string htmlMsg = enc.GetString((html.GetReport()).GetBuffer(), 0,
(int)html.GetReport().Length);
htmlMsg = htmlMsg.Substring(3);
MailMessage mail = new MailMessage(from, to, subject, t...
more >>