|
|
I need help on how to build a number guessing game using the Validating event.
There's a form with a button, textbox and a label. I want the textbox to use the validating event and for the textbox not to lose it focus when the user clicks the button. The number should not exceed 1000. If the user guesses the number right the labels caption changes, and if it doesn't it clears the text box and user can guess again. Please help. Thankx
|
|
|
|
|
|
I would like a listbox (or something w/ similar behavior) to have 2 labels, a dropdownlistbox, and a button for each item. Can I implement that somehow using one of the built in controls or do I need to create a custom user control?
Any suggestions on either would be greatly appreciated.
Cody
|
|
|
|
|
I'm writing an application that do some GDI+ functions. Now I have a problem. In Paint program of windows or any other program that can edit or create image),you fill an area with an specified color,for example you choose a yellow brush then click in an area that has orange color,then all orange area change to yellow.Does anybody know how can I do this?I hope that i was clear.
Mazy
No sig. available now.
window.open=NS_ActualOpen;
orig_onload = window.onload;
orig_onunload = window.onunload;
window.onload = noopen_load;
window.onunload = noopen_unload;
|
|
|
|
|
I have an article on this, which I'm planning to post very soon (as in this week).
"Blessed are the peacemakers, for they shall be called sons of God." - Jesus
"You must be the change you wish to see in the world." - Mahatma Gandhi
|
|
|
|
|
I'm waiting for it.
Mazy
No sig. available now.
|
|
|
|
|
Does anyone know how I would go about creating a control panel applet using C#?
I have tried starting off with a Windows Application project, but I can’t work out how to export the CPLApplet function that is called by windows.
There are a few articles on control panel apps about, but they are all done in C++.
Can anyone help?
Thanks
Ian
|
|
|
|
|
Consider MC++ instead of C#. The C# compiler does not let you export unmanaged functions.
|
|
|
|
|
Hi there:
Can u help me to update my MS-SQL database using DataSet & DataAdapter.
i need a sample to update my database (inert, update, delete).
using both Stored procedure & text.
I'll be so thankful to get ur help ASAP.
Always, Hovik Melkomian.
|
|
|
|
|
Very simple. There are some articles in this site.Search C# Database section.
Hint: DataSet.GetChange() & DataAdapter.Update() is what you need.
Mazy
No sig. available now.
|
|
|
|
|
Hello all,
I am working on an application written entirely in C# and I am at the point that I need shell context menus. Is there a good example of shell context menus written in .Net? I want functionality similar to what WinZip offers from the shell. Has anyone written these things for .Net?
Thanks for your help,
Scott
PS: The app targets only Win2000 and above so a solution does not necessairly have to work on Win9x.
|
|
|
|
|
|
I know that releasing a program in C# to the wilds out there is practically giving the source code along with it.
Does anyone have experience with the commercially available Obfuscators that scramble up your code to make it harder to access? If so, does this hinder reflection at all? How secure does it make the code, just a little obstruction to the source code or more like a vault?
Anyone have any favorites?
Rocky Moore <><
|
|
|
|
|
|
DotFuscator[^]. MS distributes a freeware version of it with VS .NET (the freeware version is also available for download). The freeware version doesn't do as much as the buyware version, though.
"Blessed are the peacemakers, for they shall be called sons of God." - Jesus
"You must be the change you wish to see in the world." - Mahatma Gandhi
|
|
|
|
|
|
I agree. It's really not worth much.
"Blessed are the peacemakers, for they shall be called sons of God." - Jesus
"You must be the change you wish to see in the world." - Mahatma Gandhi
|
|
|
|
|
Hi, I am trying to input a value from a textbox into my sql database. The problem is, is the data type in the database is currency. So how do i pass this through? I had tried to use decimal, but this does not work. There is no currency type in C# that I can see. Any ideas? The line of code I am using is
newRow["invCost"] = System.Decimal.Parse(itemTextBox4.ToString());
|
|
|
|
|
Is itemTextBox4 the name of the control? If so you need to the text property, itemTextBox4.Text.
|
|
|
|
|
Hey, thanks for that. I felt a bit stupid when I saw that I had left out the Text. It works though, so thank you.
|
|
|
|
|
Hi!
I need to paste window from some external program (let's say it's MS Outlook for example) to one of tabs in my application. Is it possible?
My first tought was to find hWnd using win32api, and then try to manipulate window like this:
System.Windows.Forms.Control c=Control.FromHandle(a);
It works fine, but only for current window and its children, returns null for other windows.
I tought about playing with some security setting but have no idea hot to apply them to application.
|
|
|
|
|
I want to change the title of my form. BUt not in the properties window...
i want to do it in the code....
like click on a button and the forms title would change...
/\ |_ E X E GG
|
|
|
|
|
In your button_Click event, write this code:
this.Text="thetext";
"Blessed are the peacemakers, for they shall be called sons of God." - Jesus
"You must be the change you wish to see in the world." - Mahatma Gandhi
|
|
|
|
|
dope, thanks.... that reply took about 30 seconds...
/\ |_ E X E GG
|
|
|
|