all groups > dotnet general > may 2005 > threads for thursday may 19
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
ViewState Saving
Posted by Jaisabari at 5/19/2005 10:40:01 PM
How to save the Viewstate in Custom Controls
--
Regards
Jaisabari... more >>
sending emails thro SMTP server
Posted by ufraf at 5/19/2005 9:08:08 PM
Hey i am a total newbie in .net.I'm working on an assignment to send email to
the adimin id that's my official id (xx.xx@something.com - the code
developers id) when an invalid user trys to login to the application.I have
to connect to my comapy's server to send emails.In the code when i give ... more >>
saving and restoring fonts
Posted by Jack Russell at 5/19/2005 7:55:20 PM
Sorry another dumb question about vb.net
How do I save a font (in a text file) so that I can restore it at later
date.
I thought
MyString=txtBox.font.tostring
Write that away.
Read it later
But how do I set it
txtbox.font=mystring does not work
Thanks... more >>
.net sync
Posted by Daniel at 5/19/2005 5:01:50 PM
i have an array that i want all threads to be able to READ from
concurrently, however, at times i want to UPDATE the array. at which point i
want all threads that use it to block when they try to read from the array.
currently i do this by wrapping ALL READ AND WRITE access to the array in a
loc... more >>
Need a tool to browse .Net DLLs (resources, etc)
Posted by Andrew Backer at 5/19/2005 2:08:43 PM
I am looking for a tool that will let me browse through *all* the info
in a dll, though at this point I am most concerned with resources. I
need to poke around inside some DLLs that Nant is compiling to see
where it is putting the resources, but what comes with VS doesn't help
me get at it.
... more >>
convert columns to rows and rows to columns
Posted by helpful sql at 5/19/2005 2:04:53 PM
Hi all,
I am using an HTML table control on my ASP.Net page. Now I need to
change this table so that columns become rows and rows become column. Since
the table is very complex with many controls in them, I am wondering if
there is any way to do this in visual studio 2003 or using any other ... more >>
How to export XML to other format ?
Posted by serge calderara at 5/19/2005 12:45:30 PM
Dear all,
I have a vb windows application that collects data in dataset and save those
data to XML fil by using the WriteToXml method.
Is there a way to export this XML content to PDF file or Excel workbook ?
If yes how?
regards
serge... more >>
SharePoint integration
Posted by Jeff Connelly at 5/19/2005 12:02:59 PM
Could anyone give me any web pointers to information on connecting to
SharePoint library files from C# code? I'd like to see if documents exists,
and save "links" to them, whatever that might mean. I'd also like to open
(but not edit) them. Thanks.
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
howto create such typed dataset?
Posted by Giedrius at 5/19/2005 11:54:33 AM
I would like to create a typed dataset, from which I could create such xml
document using WriteXML method.
Is it possible?
............
<Fields Count=34>
<Field Name="name1">value1</Field>
<Field Name="name2">value2</Field>
....
</Fields>
..................... more >>
ICloneable
Posted by Michael D. Ober at 5/19/2005 11:30:04 AM
In VB 2005, the ICloneable interface requires the following:
Class foo
Implements ICloneable
Public Function Clone() as Object Implements System.ICloneable.Clone
' return new_object of type foo
End Function
End Class
However, with Option Strict On, to use this requires
ne... more >>
Unique ID of an email? or how to identify them?
Posted by DraguVaso at 5/19/2005 11:28:01 AM
Hi,
I once saw a fax-application that puts faxes as email in a pst-file, sends
the ID of that email to a user, and than an application opens that specific
email/fax on the screen of the user.
I also would like to be able for my application to identify emails uniquely:
where should I find th... more >>
Visutal Studio compile Java program?
Posted by Zean Smith at 5/19/2005 9:48:31 AM
I am working on a project to migrate a JavaBean + JSP application (running
on Oracle application server) to Microsoft ASP.NET + SQL server.
In order to see how the original code works, I need to re-compile the old
code. I am using Oracle JDeveloper to compile the original code, my
question... more >>
Deployment Error, shdocvw.dll is under Windows System File Protect
Posted by Naeem Sarfraz at 5/19/2005 8:28:02 AM
I understand this file is under protection but how do I remove it from the
'detected dependencies' in the Installer project.
The error message:
'shdocvw.dll' should be excluded because its source file
'C:\WINDOWS\System32\shdocvw.dll' is under Windows System File Protection.
... more >>
Conditional Compilation
Posted by ME at 5/19/2005 8:18:15 AM
I would like to write a .NET Compact Framework App Simultaneously with a
standard .NET App using Conditional Compilation. However I have run into a
bit of, what I believe, a misunderstanding. How do you use condition
compilation options to specify which library, specifically
System.Windows... more >>
reading value from ArrayList
Posted by huzz at 5/19/2005 7:31:08 AM
How can i access arraylist value as (int) i want access value of the index 4
of the arraylist shown below.
Any suggestions?
Permissions[0]
{Length=8}
[0]: {1}
[1]: {1}
[2]: "Awlad Hussain"
[3]: "ahussain"
[4]: {1}
[5]: {0}
[6]: {1}
[7]: {0}
... more >>
Printing source code problem
Posted by Alan Fleet at 5/19/2005 6:57:02 AM
I am new to VS.NET 2003 Pro, and am looking at the sample VB.NET projects. I
want to print the source code to my Brother HL-1230 laser printer. However,
all I get is a page with the title at the top and the wrap-around arrows down
the right hand side. The actual programming code is not being p... more >>
Need MAC-Address from my CE.NET client
Posted by henric.jansson NO[at]SPAM igsse.com at 5/19/2005 6:24:58 AM
Hi.
I need to get the MAC-Address from a Windows CE.NET client.
I need to do it from an application.
Is it possible from .Net compact framework?
/Henric... more >>
Extract path from path & filename
Posted by Paul at 5/19/2005 5:14:44 AM
Hi,
Using the code below I can extract the filename from a path but I would like
to know how to get just the path too.
So if the full path is "C:\A Long Time Ago\In A Galaxy\Far Far
Away\SomeFilename.txt"
The filename is: SomeFilename.txt
The path only is: C:\A Long Time Ago\In A Galaxy\Fa... more >>
|