all groups > c# > march 2007 > threads for friday march 30
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
What does M mean just after a number?
Posted by tundra999 NO[at]SPAM yahoo.com at 3/30/2007 9:35:36 PM
Such as this:
return base.CalculatePrice() * 0.9M;
What data type does the 'M' stand for? I can't find a listing of these
shorthand notations anywhere.
Thanks,
Tom
... more >>
dialog's Form.FormClosed is not run
Posted by Zytan at 3/30/2007 6:17:22 PM
I have created a new form from the main form. When I close the main
form with the 'x' close button, its Form.FormClosed event is run, but
not the dialog's.
Is this normal? It is ok / dangerous? How can I force shutdown code
within the dialog's Form.FormClosed event run?
Zytan
... more >>
Accelerator key not working
Posted by B. at 3/30/2007 6:07:31 PM
I have a C# winform with accelerator key associated with some menus.
If my exe is in unmanaged C++ and the winform is invoked through
interop, the accelerator key not working. If I create a new C#.Net
project and the same winform is invoked in the C#.Net project, the
accelerator key works perfec... more >>
SQL or C# for searching one table based on another table's data?
Posted by Ronald S. Cook at 3/30/2007 6:06:35 PM
I have a table of keywords (hundreds/thousands of records):
KeywordID KeywordName
--------- -----------
1 Apple
2 Orange
3 Pear
I then have a table of products (also hundreds/thousands of records):
ProductID ProductName ProductDescription
-------... more >>
[Q] Threads or events - How to?
Posted by stuie_norris NO[at]SPAM yahoo.com.au at 3/30/2007 5:12:33 PM
Hi Readers,
I am trying to understand threading and or evetns with C#.
So I have set myself up a learning challenge.
I wish to develop and application that reads information
asynchronously using TCP sockets and uses a seperate
thread to process data once it has arrived. This second threa... more >>
Value from UserControl rounded
Posted by RvGrah at 3/30/2007 4:18:00 PM
I have a usercontrol written in C# that exposes a public property of
type double. This control is used in a program written in VB.net.
If I set the value to 66.6667, it stays fine, I can break into the
usercontrol code at various events that can change the values and it's
still 66.6667.
How... more >>
Is adding information to Exception.Data frowned upon?
Posted by Zytan at 3/30/2007 2:11:09 PM
I have a function that accepts an Exception, and writes out all of its
information to a log. This function is called in many places where an
exception is caught. In some places, I'd like to add one more bit of
information to the log. I could just write it out to the log there,
or, I could add... more >>
Reflection
Posted by Jason at 3/30/2007 1:56:14 PM
Hello
I'm still what you'd consider to be a newbie to c# Can anyone provide an
explanation to reflection, when, why it's used, and benefits or show an
example.
Thanks
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Where to hook/unhook events with Forms/Controls
Posted by JS at 3/30/2007 1:52:56 PM
I have an application with many user controls and forms which display
measurements in whatever the current unit system is. The current unit
system is kept in my 'Units' static class as Units.CurrentSystem. I
also have an event in the Units class called
Units.CurrentSystemChanged. My controls ... more >>
Problems with postgresql connection
Posted by halex2000 at 3/30/2007 1:43:14 PM
Hi, I'm trying to connect to a Postgres DB from a c# app, but this is the
first time with ODBC and am experimenting some troubles. First of all, do I
need to manually execute the drivers, or do they start with the server (the
file I downloaded and installed is the latest installer package)?
I... more >>
What's the best Timer to use
Posted by DaTurk at 3/30/2007 1:21:33 PM
Hi,
I'm creating an application that will need to use a timer to do a
static method call every second. My question, is what would be the
best timer to use? I know there are several, but I'd like to use a
timer that is probably the most reliable, and hopefully designed with
high performance ... more >>
Creating an object from a wsdl definition?
Posted by sean.j.gage NO[at]SPAM gmail.com at 3/30/2007 1:14:12 PM
Is there a way to get to a Type definition from a wsdl through c#
during runtime? I'd like to load and process the wsdl into its various
objects at run time and be able to use a factory to return the
appropriate type when that object is returned from a third party web
service. Ultimatly the clie... more >>
Ienumberable<T> / Event Handler design question...
Posted by Jamie Risk at 3/30/2007 12:47:18 PM
As an example supposing I have an object:
public class myClass
{
public List<byte[]> listOfBytes;
public int X;
public int Y;
}
and a method ("op()") whose signature is:
public delegate void ByteOp(byte[] b, int x, int y);
How would I go about creating a... more >>
My UnhandledExceptionHandler Won't Fire
Posted by victorcamp at 3/30/2007 12:33:05 PM
I'm new to Visual Studior C# .Net 2003 on Vista, and have been uable to get
my UnhandledExceptionHandler() to fire.
I have added these lines to Main() before the Application.Run():
AppDomain adCurrent = AppDomain.CurrentDomain;
adCurrent.UnhandledException += new
UnhandledExceptionEve... more >>
Printing in C#
Posted by Gaurav at 3/30/2007 11:56:01 AM
Hello... I am trying to print a .pdf file using my C# application using:
Process myProcess = new Process();
myProcess.StartInfo.FileName = "c:\\Document.pdf";
myProcess.StartInfo.Verb = "Print";
myProcess.StartInfo.CreateNoWindow = true;
myProcess.Star... more >>
CurrentDomain.UnhandledException doesn't catch Exceptions from other Threads?
Posted by james at 3/30/2007 10:53:36 AM
Hi all,
I have a console app that uses
AppDomain.CurrentDomain.UnhandledException. However it only seems to
catch exceptions in the current thread. Exceptions in other threads
(like from a timer) don't seem to get reported at all (and my
application keeps running). How do I catch unhandled... more >>
How to read html files AS IS. Encoding seems to change the characters.
Posted by Zoro at 3/30/2007 10:43:07 AM
My task is to read html files from disk and save them onto SQL Server
database field. I have created an nvarchar(max) field to hold them.
The problem is that some characters, particularly html entities, and
French/German special characters are lost and/or replaced by a
question mark.
This is re... more >>
Public delegate & event not seen in parent instantiation
Posted by Mike McAllister at 3/30/2007 10:00:01 AM
I have a partial class of a UserControl coded as follows:
public partial class Login : System.Windows.Controls.UserControl
{
public delegate void StartingLoginHandler(string message);
public event StartingLoginHandler StartingLogin;
public Login()
{
... more >>
Compiler complains about type constraint in generic class
Posted by Whitney Kew at 3/30/2007 9:54:01 AM
Hi there,
I have the following class hierarchy that isn't compiling correctly, and I
don't understand why:
public abstract class A<T> where T : System.IComparable<T> { }
public abstract class B : System.IComparable<B>
{
public abstract int CompareTo(B other);
}
public abstract class ... more >>
Automatically generating get and set properites for private class data
Posted by Charles at 3/30/2007 8:37:35 AM
How often have you seen this kind a of construct in a .NET class:
class A
{
private string b;
public string B
{
get { return b; }
set { b = value; }
}
}
Wouldn't it be nice to have an attribute you could place on the member
data that would automatically generat... more >>
Doubts in Design Level. Desktop ->Web-Based in .NET TECH.
Posted by John at 3/30/2007 8:14:03 AM
Hi all,
We have one product. It is client/server based application. We
have developed client application in VC++ 6.0. Our client is desktop based
application like dialog based application. Client application will connect to
server according to user requests. This is current scen... more >>
PrintPreviewControl navigate pages problem.
Posted by Chris Dunaway at 3/30/2007 7:11:16 AM
I am using the PrintPreviewControl on a custom form to display a
report. The report is multiple pages. I have a NumericUpDown control
on the form to navigate the pages of the report. In the ValueChanged
event of the UpDown control I change the StartPage property like this:
private v... more >>
DateTime question!
Posted by DBC User at 3/30/2007 6:25:22 AM
Is it possible to check a datetime value as in which culture format?
My program is written for international customers. I have a function
which converts the date and time to en-US format and is working. But I
want to check before converting to see if the date and time is already
in en-US format?... more >>
Is there anyway to get the row number?
Posted by chance at 3/30/2007 6:18:26 AM
I have this code:
DataRow row = docAttachTable.NewRow();
docAttachTable.Rows.Add(row);
What I want to know is the primary key number (it's auto-generated).
Is there anyway to do that?
thanks in advance,
chance.
... more >>
Debug vs Release
Posted by Grigs at 3/30/2007 5:40:01 AM
Hello,
After getting some posts on forums.microsoft.com but no solution I was asked
to post over here. Hopefully someone here can help with my problem.
I have a Windows Forms application written in C# via VS 2003. It does 100%
of what it should while in Debug mode (running in the debugge... more >>
External listview control memory exception when sendmessage is cal
Posted by Irfan at 3/30/2007 4:44:04 AM
Hello,
It may be a repeated question but I don't find the solution to the situation
that I encounter in it.
My application is monitoring another application that is built in VB6. The
application monitors all the textboxes and other input & display controls on
that application.
The data fr... more >>
reading a C++ structure from a binary file using C#
Posted by Nand Kishore Gupta at 3/30/2007 4:06:00 AM
I have a binary file created using C++ that contains an object of the
structure:
struct student
{
int roll_no;
char name[20];
char qualification[50];
};
the following code is used to create and write to the file:
void WriteToFile()
{
student s;
s.roll_no=1;
... more >>
iterating and comparing rows
Posted by Shum at 3/30/2007 3:25:59 AM
Hi!
i am working on a hospital data base. i have two tables Administration
and knowlege base.
in Administration i have columns ID, NumberOfDoctors etc, and in
KnowlegeBase i have some similar columns but ofcourse differnet data.
Administration
ID Date HospitalName
... more >>
ADO.net question
Posted by Matt at 3/30/2007 2:44:52 AM
Hi,
I have an xsd which contains two tables, for the sake of this example
I'll call them Person and Salutation. Person contains personal
details, plus a key reference to the salutation table which contains
salutations i.e. Mr Ms Mrs etc.
So, I have filled the two tables in the xsd and would... more >>
Transactionoption
Posted by Manikandan at 3/30/2007 2:02:00 AM
Hi,
I'm new to web services using XML.
I'm developing application using c#.
Could anybody explain me the difference between
[WebMethod(TransactionOption=TransactionOption.RequiresNew)]
[WebMethod(TransactionOption=TransactionOption.Required)].
I'm unable to understand the difference between
... more >>
opening multiple files with the win shell context menu?
Posted by giddy at 3/30/2007 1:48:40 AM
Hi ,
I've read this a long time ago , read it again:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/programmersguide/shell_basics/shell_basics_extending/context.asp
I know how to make file associations and then add an option to the
shell context menu ... more >>
Using 2 Mediaplayer COM objects with multiple audio cards.
Posted by Sagaert Johan at 3/30/2007 1:13:42 AM
Hi
I have 2 audio cards and want my first mediaplayer object to play through
soundcard 1 and the other object on card 2.
I can't find any properties to set, so i fear this will not be possible.
Any hints or workarounds ?
J.
... more >>
WebBrowser - changing HTML content after DocumentCompleted event
Posted by Robson Siqueira at 3/30/2007 12:49:38 AM
Folks,
I am facing a problem. I am trying to manipulate the HTML data (thru the
Document and DocumentText properties) of the WebBrowser object
(System.Windows.Forms).
The problem is that the application enters in a loop state and my changes
don't apply.
Have somebody faced the same pr... more >>
Why is there no contains/exists in SerializationInfo?
Posted by KWienhold at 3/30/2007 12:31:44 AM
I have been working with serialization in some places for a while and
have now begun to run into version issues.
Unfortunately my company is still working with .Net 1.1, so using the
VTS of 2.0 was not an option.
So I decided to have my classes implement ISerializable and wrote a
set of functio... more >>
How to search for a keyword in a StringBuilder?
Posted by Laser Lu at 3/30/2007 12:00:00 AM
Sometimes, I need to do some time-consuming operations based on whether a
specific keyword was contained in a lengthy string. Then, for a better
performance, I wrapped that lengthy string into a StringBuilder.
But after doing that, it seems there's no proper methods defined in
StringBuilder f... more >>
databinding
Posted by freak at 3/30/2007 12:00:00 AM
in .net 3.0
i have created bindingsource, dataset and tableadapters in code.
how can i bind specific column from specific table to listbox.... more >>
HTM Page editing
Posted by bob at 3/30/2007 12:00:00 AM
Hi,
Looking to make a poor man's content editor.
Need to pick out a table of links on one of our web pages and be able
to add/ remove links.
Had visions of sucking the page into an XML doc then navigating to the
table and displaying an 'English' version of the links.
User would then add /... more >>
|