all groups > dotnet framework > october 2004 > threads for friday october 8
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 31
TGA files are not supported in .NET?!
Posted by Perlom at 10/8/2004 5:13:48 PM
It seems that .NET doesn't support TGA images for some reason. When trying
to load a TGA file
Dim MyImg as Bitmap = Bitmap.FromFile (TGAFilePath)
It returns an error. Is there another way to load the TGA images in GDI+?
different parameters maybe?
Thanx
... more >>
Access outlook emails.
Posted by Luis Esteban Valencia at 10/8/2004 12:48:16 PM
I dont know where to place this post. Anyway I need to access all the emails
from my inbox on outlook and extract each link of the contents of every
email and place it in a HTML file for example(thats the easiest part) The
difficult part is to access the outlook and process the emails.
If you ... more >>
Using trusted assemblies from classic ASP
Posted by Ken Kolda at 10/8/2004 12:33:12 PM
I have a .NET assembly which utilizes the System.Management classes to
retrieve information about the computer. When run under ASP.NET, I can use
this assembly with no problems. But now I'm trying to use with from within
classic ASP. The assembly is strongly-named and I've registered it using
"r... more >>
ConfigurationException with character '&'
Posted by Peter at 10/8/2004 12:01:29 PM
app.config :
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="FileContent" value="\IM\=W~!@#$%^*()_+|\/eb&\ErrorLog\" />
</appSettings>
</configuration>
code:
string content = ConfigurationSettings.AppSettings["FileContent"]
when the program run, ConfigurationExcepti... more >>
list to search two ways
Posted by DraguVaso at 10/8/2004 11:46:16 AM
Hi,
I need to create a list a litle bit like this:
1 = q
2 = t
3 = z
4 = u
.....
But I need to have it in such a way that I can find easily the letter for a
given number, but also find easily the number for a given letter.
Is there a structure liek this in VB.NET? Or should I make i... more >>
Letter to Microsoft
Posted by Sahil Malik at 10/8/2004 11:19:20 AM
I really like channel9.msdn.com. It would be awesome if instead of 1000
blogs on blogs.msdn.com, a few key individuals could actually do videocasts
instead. Each videocast should be accompanied with an rss feed that I could
launch thru any news reader. That way I could scan the stuff I need, and
... more >>
converting byte array to int32
Posted by bestin at 10/8/2004 10:57:02 AM
how do i convert array of 4 byte to integer. I have a byte(4) byte(0)=0,
byte(1)=0 byte(2)=0 and byte(4)=37. This is equal to 37 int32 number. How do
i convert it to the integer. ... more >>
Check for Inheritance
Posted by Jason at 10/8/2004 9:22:29 AM
I want to use reflection to check if a given class inherits from
UserControl. The solution would need to consider the possibility that the
class does not inherit directly from UserControl but goes through several
layers. Besides creating an instance of the control and doing something like
"m... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
System.Web.Mail.SmtpMail not working from localhost (windows firewall / xp service pack 2 related?)
Posted by usenet_daughter NO[at]SPAM yahoo.com at 10/8/2004 6:45:55 AM
Until recently, I was able to send e-mails running my ASP.NET app
locally in debug mode. Recently I got XP Service Pack 2, and notice
now I can't send emails from localhost. Is this svc pack 2 security
related? Can I set something in Windows firewall to re-enable my
ASP.NET apps to send mail?... more >>
Setting focus to a treeview node
Posted by Roy at 10/8/2004 5:59:06 AM
Hi all,
I have a treeview that is 3 level deep with parent, children, and grand
children. How do I assign focus to a child when user does an specific task?
(In the following example Child2 needs to get focus. Treeview is expanded and
GChild6 has focus)? Thanks in advance
Parent
Child1 -->... more >>
Programmatically to check if the .NET framework isinstalled.
Posted by Bilal at 10/8/2004 3:35:02 AM
I have a C++ application from which i can start a .NEt library as a dialog
from the toolbar menu. If the .NET framework is not installed i want to gray
out the toolbar button that starts the .NET dialog component. So my question
is:
Is there any way to programmatically detect if the .NET f... more >>
Refresh controls on Panel in webform?
Posted by no0spam NO[at]SPAM yahoo.com at 10/8/2004 1:08:00 AM
How do you refresh the controls on a panel?
I've got a VB webform which contains a panel. On that panel is a
checkbox and a textbox. I'd like the textbox to appear when the
checkbox is checked and disappear when the checkbox is unchecked.
My code is:
Private Sub checkBox1_CheckedChanged... more >>
|