all groups > c# > march 2006 > threads for sunday march 26
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
printing html document
Posted by sudeep.kaul NO[at]SPAM gmail.com at 3/26/2006 11:45:28 PM
Hi,
I want to print contents of html page without user intervention . Can
any one HELP ME ?
... more >>
Call a string by Another Form
Posted by Gürol Ayanlar at 3/26/2006 10:52:01 PM
Hi all,
i have two form ... i want to bring a string in form1 from form2... But
it's like Form1.Controls[controlindex].. how can i write "controlindex"
instead of "controlname"
So thanks...... more >>
Application.SetUnhandledExceptionMode(UnhandledExceptionMode.Automatic);
Posted by Maxwell2006 at 3/26/2006 10:45:26 PM
Hi,
The inelisence description of "UnhandledExceptionMode.Automatic" explains
this:
Route all exceptions to the System.Windows.Forms.Application.ThreadException
handler, unless the application's configuration file specifies otherwise.
How can I configure unhandled exception behavior in ... more >>
using ElapsedEventHandler and Label
Posted by ginguene NO[at]SPAM gmail.com at 3/26/2006 9:48:36 PM
Its supposed to be a very simple program, with a class to display the
updated current time every second (CAnalogTime) inside a Label in my
form, using ElapsedEventHandler from System.Timers;
The event is working, because the displaybox will show up every second
like requested.
Although the la... more >>
Logging runtime values passed to a function
Posted by Arif Khan at 3/26/2006 8:53:01 PM
Hi, I want to write down a function entry point logging method, allowing
logging of passed in parameters values along with function name and parameter
names. I know I can get the parameter name and function name using
System.Reflection or StackFrame but not sure if if it's possible to retreive... more >>
emit raw html
Posted by bill tie at 3/26/2006 6:11:02 PM
I have HTML markup in a database table, e.g.
<h1>text text</h1>
When I read the data into a DataGrid, GridView or some such,
I want the HTML to be emitted as is. This means that if I view
the source of the page, I will see, e.g.
....<td><h1>text text</h1></td>...
I don't what the HTML... more >>
Filtered view on second DataGridView
Posted by Steve Teeples at 3/26/2006 3:07:09 PM
I have an XML data file with several nested tables two to three layers deep.
I want to use two DataGridViews to show and edit the data then save the data
back to the XML file.
I want the top DataGridView to show the parent data. If clicking any row of
the parent I then want to display in ... more >>
Library Packages
Posted by Steven Nagy at 3/26/2006 3:03:17 PM
Hey All,
Sorry if this isn't the right group.
I actually only really use 3 groups on google, and this is by far the
most frequent.
I am interested in finding a good site where I can get .NET libraries
for various functionality.
For example, I need a library that will help with reading/writ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Increase the size of an ApplicationContext tooltip
Posted by bixbm at 3/26/2006 2:47:25 PM
Hey all,
I'm developing a tray application and want the tooltip to display status
info but it evidently has a max size of 64 characters.
The application uses the ApplicationContext directly since it is a form-less
utility.
Does anyone know how I can override or extend the ApplicationContext... more >>
Convert byte to it's bit representation
Posted by Alex at 3/26/2006 2:46:24 PM
How can I get the bits that compose a byte?
Say I pass a byte of value 10 to my byteToBitArray function, I would
LIKE to get back an array (8 long) of 00001010.
I want that back cause that's the binary representation of the byte 10.
Any idea how to do this?... more >>
Determing if a Type is a specific Generic
Posted by Nigel Sampson at 3/26/2006 2:46:05 PM
Hi,
I'm in the process of upgrading an Object-Relational mapping library to .NET
2.0 and am wanting to implement support for Nullable typess.
I'm using Reflection to analyise the object that is being mapped and
building up a schema for the mapping.
This means I need a way to determine if... more >>
Intensive flickering
Posted by n00b at 3/26/2006 2:44:19 PM
I have some forms with maybe around 30 controls on each and anytime I load
these forms different parts of it start flickering though not all of them at
once and not the same ones everytime. the forms are each generally separated
into 2-3 different panels and they start flickering with no appar... more >>
Enum as a Generics constraint - why doesn't it work?
Posted by Rune B at 3/26/2006 2:40:44 PM
Hi Group.
I would like to do the following:
public static DecriptiveCollection GetValuesForDisplay<T>() where T :
System.Enum
{
DecriptiveCollection list = new DecriptiveCollection ();
foreach(T value in Enum.GetValues(typeof(T)))
{
// add description Attributes and enum ... more >>
Redirecting Browser to another URL
Posted by ThomasXxLadt NO[at]SPAM hotmail.com at 3/26/2006 9:26:26 AM
Is there a way to redirect the browser from within a c# control which
is embedded in an HTML page to another URL? I am looking for something
similar to "showDocument()" which performs the described action in
Java-Applets.
Cheers,
Thomas
... more >>
Read Access DB
Posted by Smile at 3/26/2006 6:08:59 AM
hi
any one can tell me how can i Read Access Data base Using C#.net
windows
which refrence i hav to use , ConnectionString , reader
and all
actualy i want to append DAta from Access (Pickup.mdb) File to SQL
SERVER
i dont know how can i connect to access db through C#.net
Help me out
Regards... more >>
Speed problems on List<T>.Insert(i, T)
Posted by Stuart at 3/26/2006 12:00:00 AM
Hi everyone,
I have this app that needs to insert about 400,000+ items into a sorted
list, and I am currently using a simple insert something like this:
int index = list.BinarySearch(t);
if (index < 0)
list.Insert(~index, t);
But this ... more >>
Why use and what is project reference
Posted by Tony Johansson at 3/26/2006 12:00:00 AM
Hello!
I use C# and VS 2003
My exe file is using several class dll(assume we called then 1,2,3,4,5,6)
and some of these 6 class dll is using some of the other 5 class dll.
If I have a class Dll called Test.dll that I want to add a reference to I
use the add reference in project
setting... more >>
|