| Thread | Last Post | Replies |
|
| Marshaling Struct for native SendMessage | 14 Jul 2008 15:25 GMT | 5 |
I need to call a lot of different native SendMessage to retreive informations from non managed application. Some win32 messages use struct pointer for lparam....how to create and marshaling the struct to be able to use it in sendmessage...
|
| bindingsource in partial | 14 Jul 2008 13:08 GMT | 2 |
Is it possible to have a bindingsource in a partial class? Well it is possible, but I have the following issues: - this.components is defined in the .designer.cs file. If I call my own initialization method before the GUI's one, I will not have
|
| How to programmatically select a row in a datagrid | 14 Jul 2008 13:05 GMT | 4 |
I cannot programmatically select a row in datagridview control. I use the following instruction to change the selection of a row dataGridView2.ClearSelection(); dataGridView2.Rows[currentrow].Selected = true;
|
| Database project | 14 Jul 2008 12:30 GMT | 1 |
I'll try to describe situation. 1. We have VS database project. 2. It contains table A. 3. In post-deployment script for the table A we have 'insert' statements
|
| comparison string object to string array... | 14 Jul 2008 12:18 GMT | 8 |
I use Contains method of String object to determine if a string variable has another string, like that. *************************** ipAddress.Contains("127.0.0")
|
| form calling a form question | 14 Jul 2008 11:38 GMT | 2 |
I've a main Window form, which sometimes calls a new form, with a textBox and a ok button. (I'm trying to make it to look and feel like a MessageBox). My problem is that when i'm minimizing the main window, and then maximizing it, the messgeBox form is not shown (i need to open it ...
|
| Converting winform application into a dll class library | 14 Jul 2008 11:19 GMT | 2 |
I have a standard C# windows application with one form and some logic around it. I need to onvert this exe into a dll class library and use it's functionality from another exe.
|
| Installation | 14 Jul 2008 11:07 GMT | 1 |
I have a website (www.motiont.com) where people come to download softwares like Job Finder, CraigsList Reader, etc. I am using VS Setup Project to deploy my applications, but some users are complaining that they loose the shortcut to the application. It seems
|
| How to get 2 digit decimal when data is 13 og ikke 13,00 | 14 Jul 2008 11:04 GMT | 1 |
I try from a textbox writing a decimal value with 2 decimal value. If I write 13 meaning 13.00 curreny value I only get 13 even I use NumberForvartInfo decimal? => use of null value with fault conveting private static Decimal? StrToDecimal(string str)
|
| Creating dynamic DLinq tuple comparison query | 14 Jul 2008 09:10 GMT | 14 |
I created dynamic extension methods for <= and < SQL comparison operators: public static IQueryable<T> LessThanOrEqual<T>(this IQueryable<T> source, string property, object value); public static IQueryable<T> LessThan<T>(this IQueryable<T> source, string
|
| Dynamically placing focus on a specific control at startup | 14 Jul 2008 08:45 GMT | 3 |
Hi Gang, I have two text boxes on a form and if the first text box is populated, I want to place focus on the second text box at startup. However, this never seems to work. What am I doing wrong here?
|
| Forms.Timer - multithreaded? | 14 Jul 2008 08:24 GMT | 4 |
Does the System.Windows.Forms.Timer invoke the main form thread? Or does it start another thread so that I need to lock my objects on which it operates in case the user of the program saves data while the Timer updates data. regards Jesper.
|
| Getting MD5 of EXE | 14 Jul 2008 08:16 GMT | 7 |
I'm completely stumped on this but i want to create something that can get the md5 value of an EXE based on the passed in argument and compare it to the specified MD5. I can do the comparison, but i dont know how to get the EXE md5 value. Can
|
| master pages | 14 Jul 2008 08:16 GMT | 2 |
is there any master pages in windows application.Or any other method for creating form like master pages.
|
| Page Setup to print PDF from WebBrowser control | 14 Jul 2008 07:26 GMT | 1 |
I want to call Page Setup to set default printer and page size and orientation before batch printing pdf's silently from WebBrowser controls. I can print silently using DDE (the NDde library) or Adobe Interapplication Communication (IAC) DotNet API. There is no Adobe DDE command ...
|