Software Development Network Logo
  • Windows Forms
  • Audio and Video
  • Microsoft ISV
  • .NET Development
  • IE Development
  • Game Technologies
  • Visual C#
  • Windows Vista
  • Visual C++
  • Visual Basic
  • Smart Devicet
  • SQL Server
  • VS Team System
  • SharePoint Products
  • Visual FoxPro

Software Development Network >> Windows Forms

Windows Forms

New Question

Webbrowser Help needed
save graphics
how do you pass a text string to a windows form text property
PERSIST, DAMN YOU! >:(
How to add 'X' to Tabs?
How can I get the funcationality of cut, copy, paste, undo, redo etc
Loading Image (Visual C# 2005)
The designer could not be shown for this file because none of the classes within it can be designed
Vista Controls coming soon?
MultiSelect Listbox databinding

Top Answerers

Beast Forever
asfsdf
seprice
PaulVC
Gareth Hunter
desilets
llorrac
kennm
Prasenna
Nate00
I.T. Works:
Only Title

Answer Questions

  • Summoner Parameters for iexplore.exe

    Hi, I have a .Net application that opens the browser when a certain action is done. This is done by Process.Start("www.google.be") for example. Now I want that there is only one browser window for the application. When I click on a link in my program, the link must open in a existing window from that program if exist. I have googled to find the iexplore.exe parameters but only find -k for kiosk mode and some others like -new, -embedded, -nohome... Someone have a link or the list for the parameters Thx with respecting to Zhi-Xin Ye its not working even under IE6.... Do any one have the solution or a sample code Thanks, Ash MCSD.NET Hi Guys, ...Show All

  • NoEgo error: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.

    Hi, I am developing a windows application in .net 2005 that runs a rather large stored procedure in sql server 2000 (about 165 parameters). I run a function that assigns all the select parameters from various check boxes and all the where parameters from various text/combo boxes as a datatable. In that same function, when i executedatatable (passing the connectionstring, commandtype, commandtext, and parameter array), i get a sqlexception with the error: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. The statement has been terminated. I've searched high and low for an answer to my problem. Though many people have encountered this same error, it seems none have reac ...Show All

  • Khin Include the parent control when a child is cut / copied and pasted.

    Hi all, This is the final step in what became a rather involved process. The big picture is that I need to present a container control at design-time which does NOT clip its children. So yeah, I want for instance a child button control to be able to draw beyond its parent's bounds. I've gotten it to work by implementing an "envelope / hub" mechanism, where the hub is the above-mentioned container, and the envelope is its parent, another container which sizes itself to envelop the hub. When the user needs to "float" (ie. un-clip) the child button, it gets re-parented to the envelope and now has free reign to paint over the hub's bounds. All that to say, I have one final problem: when the hub is cut to clipboard, ...Show All

  • BrianFerguson How to make a ToolStrip Calender Item?

    How to make a ToolStrip Calender Item which use a datetimepicker as its content Thanks Is that difficult to create by inheritance You could put a DTP on your form, close to the ToolStripButton and set it's Visible property to False. Let the button's Click event set it to True... Ehrm, no need for inheritance, just standard Windows Forms designing... ...Show All

  • Jim P. Enterprise Library 2006 and TableAdapters

    What would be the implementation details for TableAdapters to work in conjunction with the Enterprise Library I was planning on passing Typed Datasets through the tiers using the Data Application Blocks but I fail to see where the TableAdapters would fit in. Thanks TableAdapters don't fit in for use with the Enterprise Library 2006. Although there is nothing stopping you from using them in conjunction, they are considered alternative solutions to the data access problem. Enterprise Library is a helper library for "generic" data access, whereas TableAdapters govern data access to a specific Database Table. Regards, Dave Thanks, this is what I thought. Would it be ...Show All

  • Scythen EncoderParameters, rotating and flipping an image

    I'm trying to apply transformations to a JPEG image like so: bitmap.Save(destinationPath, imageCodecInfo, encoderParameters); Where I fill in imageCodecInfo and encoderParameters. But I would like to rotate AND flip the image, but it only applies the first transformation specified by the first index in encoderParameters. encoderParams = new EncoderParameters(2); encoderParam = new EncoderParameter(encoder, (long)EncoderValue.TransformRotate180); encoderParams.Param[0] = encoderParam; encoderParam = new EncoderParameter(encoder, (long)EncoderValue.TransformFlipHorizontal); encoderParams.Param[1] = encoderParam; This is the code I use to set the transformations, but only the rotate180 gets applied. Does anybody know how to apply them both ...Show All

  • su45937 Internet Application - need help, simple question

    Hello: I'm new to programming and C#. I'm trying to create an application that will do web tasks without actually opening a browser (ie. go to hotmail.com and log in, compose an email etc... ). How would I do this Tried to google this, but had no luck (i'm not searching for the right thing). Can someone please guide me in the right direction... Thanks, Vinny Ty for your quick reply bm##. I'm not trying to log into hotmail, just a website in general...I think what i'm looking for is a virtual we browser as you suggested. Any help on this If you want to send e-mail from hotmail, a better way would be talking to it directly... Here are 2 articles that ...Show All

  • lingga Setting the tag on an image in an imagelist

    Hi, I have a base form with a protected imagelist which inheriting forms use. I need to set the tag property for the images within the imagelist. Bizarrely, this does not seem possible. In my base form constructor, I have code like this:- imgBuySell.Images[0].Tag = "myTag1"; Stepping through this in VS2005, the above line runs without exception, but when I then inspect imgBuySell.Images[0].Tag its' value is null. Sure enough, the ImageCollection exposed by ImageList.Images is readonly. (It's still very surprising that an exception isn't thrown here). Is there any way to do this I really want to be able to put my imagelist together in the designer, so as not to have to mess around with image streams and serialised resources and ...Show All

  • Tej62007 Property Page control

    Can anyone tell me what kind of control is used in the Property Pages in Visual Studio 2005 (Its the same control you see when you select Tools --> Options --> Windows Forms Designer.) I would like to use a control like that for some data entry in my windows apps - is it a standard control (though I don't see anything like it in my standard toolbox) or do I need to download it somewhere Is it perhaps just a clever implementation of the listview control Please advise. Thanks, Shawn. Thanx a stack. That's the PropertyGrid control, it's in your toolbox. ...Show All

  • Vasile Ascii problems with RichTextBox

    I have a problem when i save/load information from a RichTextBox, when i save the information into a text file every character that has larger number then 127 in ascii-table becomes strange, so the character O will be \\'d6 and character a will be \\'e5 and so on. And that is a big problem when i later tries to insert the text into the sql database. This character ' is causing problems in my sql query. So, the thing i want to know is, how can i save the information in such a way, that it won't convert every character that has bigger ascii number then 127 into strange character formation. One more thing, i have to save the information in RichText format becuse im using pictures in the RichTextBox. //Mario ...Show All

  • Dual Cortex Getting data binded to another combobox

    I have form1 that contains a combobox that I need it to be populated with data from a collection of objects.. it happens like this I click a button and Add items to an arraylist on this dialog form that comes up... When i add the items to the arraylist and click the OK button on my Dialog form I want the comboBox on Form1 to be populated with that information that was added in my Dialog box... private void btnAddToList_Click( object sender, System.EventArgs e) { this .AddBillToCustomersList.Add(( int ) this .cboCustomer.SelectedValue); lbAddBillTo.Items.Add( this .cboCustomer.Text); } private void btnOk_Click( object sender, System.EventArgs e) { //Here I need to add the items that i added in the ...Show All

  • Kennon2005 How to call a web page as Post method from Windows Form Application?

    I have a form application with some TextBox controls in it.I want to send the values of these controls as Post variables to the web page. I can call a web page using System.Diagnostics.Process.Start("Http://...") but how to make a call like it was called from form element with method post I used WebClient instead.It seems to be just for those kinds of tasks. Now the problem is the page is giving me response "Not signed in...".And page is using cookies for authentication. Thats the reason I tried to call Browser so I would already be authenticated. I discovered CookieContainer class but WebClient doesnt seem to have that.So do I need to switch to HttpWebRequest instead ...Show All

  • mobigital WebBrowser.PreviewKeyDown and pressed key current keyboard layout character

    Hi, I have a problem. I want to get character from pressed key according to actual keyboard layout. And I can’t do it manualy, because I don’t know how many different layouts will be used. I have tried to watch properties like KeyValue, KeyCode, KeyData and compare changes according to layout, but nothing was changed. So I don't know ho to determine the right character. Any idea Vinci For anyone who may use it, there is a solution: IntPtr keyboardLayoutHandle = InputLanguage .CurrentInputLanguage.Handle; char [] keys = new char [1]; keys[0] = ( char ) User32 .MapVirtualKeyEx(e.KeyValue,2,keyboardLayoutHandle); ...Show All

  • MarissaM WebBrowser History Problem

    Hey, I am using the same code I have in my webbrowser program that I used for the bookmarks, but I checged everything int he bookmark code to the name History instead of Bookmark, So I fixed 7 errors and thought it would work but then I got a runtime error when the form opened up, it was: An unhandled exception of type 'System.StackOverflowException' occurred in SurfScape1.exe For this line of code: this .TheCollectionOfHistory = value ; in this little group witch is all I need to show you guys becuase I dont think the other lines of code do anything with this...but here is what the group of code this line of code is in: public List < History > TheCollectionOfHistory { get { return this .TheCol ...Show All

  • Borko RTL and LTR strings in List box

    Hello I have to display a list of items according to the following template: <name> (<id>) Everything goes ok until i started getting <name> string in RTL languages like Hebrew. English items look absolutely normal: MyExampleName (1234) while hebrew look like: (15491) I need them to look like: (15491) or like (here should be numbers) and of course i need both kind of items to be displayed in the list together. Can anybody give a hint how i can achieve it I believe it is possible. A good example is a fonts combobox in MS Word. Please help! It is quite unclear from your post what the alignment problem really is. You can always use a ListView control with View = Details. You can set the alignment for each ...Show All

697071727374757677787980818283848586

©2008 Software Development Network

powered by phorum