| Thread | Last Post | Replies |
|
| Control.Invoke with ShowDialog | 28 Jun 2006 14:29 GMT | 4 |
I have a main form with a "lock" button. When the lock button is clicked, another form is shown using ShowDialog(this). The user must enter their PIN on this form to close it and resume the main app. Because it is showing using ShowDialog(this), the main form in the back
|
| I can obtain Where clauses, order by, group by, of a consultation SQL?? | 28 Jun 2006 13:59 GMT | 4 |
I can obtain Where clauses, order by, group by, of a consultation SQL, by means of some class similar to codemodel
|
| Problem with alert message | 28 Jun 2006 13:54 GMT | 1 |
I've created a web page with ASP .NET and C#. Say my aspx filename is "WebForm1.aspx", I have created another C# file named "Details.cs". My problem is I want to prompt an alert message from both WebForm1.cs and Details.cs, WebForm1.cs works fine, but no message can be shown from
|
| Switching Panels using Visible =true & Visible=false; | 28 Jun 2006 13:47 GMT | 2 |
I'm developing an application on PDA using WindowsCE. In my application I have several tabs at the bottom of my screen. However, in one of the tabs I've placed 2 radiobutton, used to switch between between 2 panels on that same tab. (I don't use nested tabs,
|
| HexaDecimal | 28 Jun 2006 13:37 GMT | 1 |
How to assing hexadecimal vakues to variables? In VB I use this : Const Generic_write As Integer = &H40000000. I would like to know how it would be in C#.
|
| C# IDE Shortcutkeys | 28 Jun 2006 13:34 GMT | 1 |
This is really a newbie type question. I am tired looking for various shortcut keys while coding in C#. I am using VC#2003 and like to avoid using mouse. Does anyone have link to a list of shortcut keys...cheat sheets or
|
| C# and outlook | 28 Jun 2006 12:54 GMT | 1 |
Hey there, I am wanting to open up a saved .msg file off disk and show it in outlook from my c# application, i cant see a way in which i can do it with the outlook 11 object library. I can do it easy for word excell,
|
| dynamic variable | 28 Jun 2006 12:20 GMT | 8 |
i tried to convert my code php into c#, but no hope... $foo = 'test'; $test = "hello world"; echo ${ $foo };
|
| Finding mysterious Application Settings | 28 Jun 2006 08:39 GMT | 9 |
When I run a particular application I've been working on for a while, it somehow finds a value for the Application Setting "Test.Properties.Settings.Default.ProjectPath", but I can't see where it is acquiring the value! I have been through all of the project's Properties,
|
| Compiling C# | 28 Jun 2006 08:07 GMT | 3 |
Does anybody know how to compile a Windows app created in C# so that it runs on older operating systems, such as WinNT4 - without necessarily having any framework loaded. Or is this a restriction of C#?
|
| Openeing a process. Problems | 28 Jun 2006 06:14 GMT | 1 |
Hi im trying to open a word document in word. Like this: Process p = new Process(); p.EnableRaisingEvents = false; string mFileName = @"c:\a.doc";
|
| Date data type | 28 Jun 2006 05:05 GMT | 1 |
Any data type that I can use to store date ?
|
| Collection with Key and Index | 28 Jun 2006 03:50 GMT | 5 |
I am trying to create a base class that contains a collection that MUST be able to be referenced by both a string key and a positional index. This collection MUST keep the items in the same order as they are added. In 2.0, is there a collection that would support this?
|
| DateTime Math | 28 Jun 2006 03:45 GMT | 10 |
Can anyone think of an easy way to take two DateTime values and calculate, with double precision, how many semi-monthly (the first and the fifteenth) pay periods occur between them? I started manually writing a function for it, and it just got uglier and
|
| Question regarding timer. | 28 Jun 2006 03:42 GMT | 5 |
I am using timer to do some functionality on user specified time. I am using system.timers.timer class and its timer to do this functionality. What i am doing is i set autoreset to false as i want to start processing only on user specified time.
|