Verry funny:laugh::laugh:
quiteSmart
Posts
-
JOTD: Lesson in Sales -
excel 2007 issuehi all, i have an issue withe the excel 2007 files. I recently received a file that is created using excel 2007. I have excel 2003 on my pc. so it is not openning. if there any tool or any procedure i should take that allows me to open, edit, and save this file in a 2003 file format. thanks,
-
KeyPress Event for TextBoxUse the KeyDown event instead of the KeyPress and write in it:
if(e.KeyCode == Keys.Enter)
-
Bloody IE7!Bradml wrote:
Believe it or not that was one of the things I was downloading.
U know now the reason
-
how to delete static variabledo u mean to realease the variable when closing the program. if so there is no need cz they will be released automatically.
-
Application with multiple focused formsi think if you develop the toolbar as a usercontrol not as a frame it will give you an advantage. cz if you did it as a user control and add it to the first frame it will be as any normal control in your frame. this will allow you to have a double focus. you can drag and drop from it and ......... i am not very sure about the idea i gave you but i think it will be a starting point for you. good luck
-
Are you concerned about bird flu?:doh::doh::doh:
-
Are you concerned about bird flu?don't worry cause scientist showed that u wont be affected unless you touched the bird when it is alive. meaning if you eat the bird after cooking it there wont be any danger to you life
-
richtextboxthat would be simple for google. By the way google is smart more than us, you can try asking it from time to time for basic questions like this
-
open MenuItem of MainMenu by codeStefan Troschütz wrote:
Did you tested this?
Sorry i didn't do that, but i assumed it will work. anyway i will try to figure out another solution
-
RichTextBoxtextBox.Select(textBox.length, textBox.length);
i guess that will work -
open MenuItem of MainMenu by codejaimeaye wrote:
with menuItem1.PerformClick(); you send a event of Click.
that's right, but if you do this on the parent menuItem it will do what you wish cz the click event of the parent menu item is to open its drop down items. for example if your have a File menu item and under it New. if you like to view nuew you write:
fileMenuItem.PerformClick();
-
open MenuItem of MainMenu by codeif this menuItem has other menuItems under it you use the following statment
menuItem1.ShowDropDown();
if it doesn't have you show use the above statment on its parent menu item -
Kill them all (well most of them anyway)he is just posting an article. why are you attacking him. if you want to attack some one attack the article writer or the scientist that made that study.
-
Hi!Start by an english book first than go and get a C# book.
-
help for Remember Passwordhi, i think the best way is to add a flag in the database or the users. this flag is set to true when the user checks the remember password. You only have to check the users record of this bit field and accordingly you either display the password or not
-
Start/stop buttonYou may use a thread and in the start method of the thread you put your code and when clicking on the strat button you start the thread and you stop it when clicking on the stop button. if you can provide us some code of yours we may help more. good luck
-
ListBox closeThank you for taking all the time to test my problem and figure out a solution. Actually i did before the same solution you provided. it is working now. thanks.:rose:
-
ListBox closehi, thanks for you reply but i have some comments first what is this:
bobsugar222 wrote:
private void WindowsApplication1_Click(object sender, EventArgs e)
there is no events for the windows application. and if you mean by it form1 than i tried it and it didn't work please clarify. thanks again
-
ListBox closehi, In my form i have a buttons, textBoxes, comboBoxes, labels,.... When i click on of the buttons a listbox that was set invisible is set visible. It shows some names. The list box is located directly at the right-bottom corner or that button. What i want is to make the listbox invisible whenever the user clicks the mouse at any location outside the listbox I tried using the FocusLost event of the listBox, but that didn't work perfectly. The problem it has is that whenever i click a label or a panel or something that doesn't receive focus, ofcourse the function is not executed. With the FocusLost i tried to implement the MouseDown event of the form. That also didn't work. Is there any way to do that without implementing a mouse click event on every label and every panel in the form. thanks in advance