0
votes
1answer
17 views
Handling text with embedded links in a windows form
I am trying to break out of vb into c# and needed a personal project to get some c# practice in to cement the syntax differences in my mind.
I decided (for want of something better) to write a little …
0
votes
2answers
26 views
Instantiate a Windows Forms control in WPF without default constructor
I am trying to host a custom Windows Forms control in WPF. My custom control does not have a public constructor, and it has a static Create() method which looks something like this:
public abstract …
1
vote
1answer
58 views
Process.WaitForExit() on Console vs Windows Forms
I have a console app and a win forms app that both need to call out to a remote server for some data, they make a call to the command line part of Putty, plink.exe, to run a remote command over SSH.
…
0
votes
0answers
14 views
Select Item from winlist with SendMessage
Hi
how can I change Item state in windows forms list using send message function (C#)
I saw a couple of examples on the internet but none was really successful in doing it.
0
votes
4answers
59 views
Add text in textbox that will show only when clicked.
I load files to a TextBox, and I would like some of the information to be hidden and replaced with a LinkLabel (that says something like 'click me to see more'). only when the LinkLabel is clicked …
2
votes
3answers
50 views
INotifyPropertyChanged with threads
I have a
BindingList<T>
which is bound to a datagridview. One property in my class takes long to calculate, so I threaded the action. After the calculation I raise the OnPropertyChanged() …
0
votes
1answer
71 views
CSharp .NET 3.5 Windows Form DataBinding ComboBox to a List<>
Hi there,
Ok, firstly I have the following code working.. although my question is this; should I code the combobox databinding like the following example, or is there an easier/more efficient way?
…
0
votes
1answer
170 views
Transparent background for MFC-hosted Windows Forms UserControl
I am using CWinFormsControl to host a Windows Forms UserControl in an MFC dialog. I have set the property DoubleBufferd to true. According to the docs this results in AllPaintingInWmPaint and …
0
votes
0answers
16 views
Compound file Explorer
Can any one provide me a simple Windows forms project to implement a Compound File Explorer?, With which we can access all the storages and streams of a compound file(.xls,.doc) in tree view.
0
votes
8answers
129 views
Validating File Path w/Spaces in C#
I'm something of a n00b at C# and I'm having trouble finding an answer to this, so if it's already been answered somewhere feel free to laugh at me (provided you also share the solution). :)
I'm …
0
votes
2answers
32 views
On “menu key” press, ContextMenuStrip does not pop-up at the mouse cursor position
In a Windows Forms, .NET 2.0 application, I'm using a ContextMenuStrip control attached to the ContextMenuStrip property of a form. When I right-click the form, the ContextMenuStrip opens at the mouse …
0
votes
1answer
28 views
Align controls to center of form in Windows Forms Designer
This is something that's been driving me up the wall: how can i get the windows forms designer to provide pixel snapping for the horizontal and vertical centers of the form I'm working on?
-1
votes
6answers
65 views
Cannot Connect to Sql Server Enterprise On Local Machine
Hi all, i've sql server 2008 enterprise edition, and a c# windows form code that should connect to server. it's a local server, on my computer, and when i try to log on i get this error
cannot …
0
votes
1answer
11 views
Adding/Editing master-children entities in a single Windows forms
How would you go about designing a windows form that allows adding/editing a master entity along with it's child entities? For example When adding/editing an Order, Order-Items would also need to be …
0
votes
1answer
20 views
Deploying a form-less Windows Forms application as an exe-file
How can you deploy a Windows Forms application to a single .exe file so that your users won't have to install your application, but just run it?
