In a C# (.NET) application, I need to load an image (fixed path) at application start-up.
Can anyone point me to a working example?
Thanks
Search Result
Collapse
7 results in 0.0030 seconds.
Keywords
Members
Tags
-
Load jpg in C# Form
-
How to avoid overlap of images in panel?
HI!
I am developing an application which want to edit image layout by drag and drop.In that case there are many images in the panel and I want to drag one image from another panel to space where images don't lie.So how can I achieve that?If you have any idea on this please let me know.
Thank you. -
Additional headers in webbrowser.navigate
How can I add multiple additional headers?
wb.Navigate(web site, "_self", Nothing, "Content-Type: application/x-www-form-urlencoded")
I would like the additional headers to also contain User-Agent: My Application, how do I add this in correctly? -
para15000 started a topic InvalidOperationException object is currently in use elsewhere - red crossin C SharpInvalidOperationException object is currently in use elsewhere - red cross
Hello
I have a C# desktop application in which one thread that I create continously gets an image from a
source(it's a digital camera actually) and puts it on a panel(panel.Ima ge = img) in the GUI(which
must be another thread as it is the code-behind of a control.
The application works but on some machines I get the following error at random time
intervals(unpre dictable)... -
Notification Application
Has anyone used the notification class from Windows CE forms?
using the following code
I can display a "Toast" pop up notification on screen for a user. From a forms app......Code:using Microsoft.WindowsCE.Forms; ... Notification note = new Notification() note.Caption = "Foo"; note.Text = "Bar"; note.Visible = true;
-
Xml Declaration in C#
Hi All,
I have a situation in which I need to write the XML Declaration of an XmlDocument (that I am creating) from a hard coded text.
How to acieve this? I have tried with the inner text property of XmlDeclaration node etc. but it is throwing errors. Please guide.
I am using C#, however if you can show me the VB way I can very well appreciate that.
Thanks for reading my problem.
Regards,
... -
DataBinding - Windows.Forms - Updating underlying DataTable
Hi,
I've got a question which I'm hoping has a simple answer.
I have a series of control bound to an underlying DataTable.
The databinding are setup to update the data source on validation.
I have an event handler monitoring the ColumnChanged event on the DataTable, and in certain circumstances I update another column in the datatable.
When I change another column's value...