- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 4
- Posts with Downvotes
- 2
- Downvoting Members
- 3
29 Posted Topics
Re: It doesn't works ... I have: [code]using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Reflection; using System.IO; using System.Resources; using System.Media; using System.Diagnostics; namespace Browser { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object … | |
Hello guys. I have two forms. First form, which appear when you enter in the program, it's like a Form Intro ... ( like in C# when you enter in C# a form appear for some seconds, which there is written intro etc. ). Ok, and after 8 seconds, my … | |
Hello guys. I have a matrix with char. [CODE] #define MAX_CHAR 128 #define MAX_SIRURI 10 char siruri[MAX_SIRURI][MAX_CHAR]; [/CODE] I must read the number of strings ( [B]n[/B] ), and after that, to go through each string. I must read each string, after that, to show it, and to find for … | |
Hello guys. I have 2 Windows Forms. Let's say, the first form is like a intro ... ( you know, when you enter in C#, a green window appears for some seconds ). Ok, i use a timer, and after 10 seconds from starting the application, i try to close … | |
Hello guys. I've found a new problem. I'm using an string array ( unidimensional: Important[] ), and a RichtextBox Text. Let's say, my rich text box is: [b]1 january 1852 - In this year, Eugene-Antole Demarcay was born.[/b] Ok, i want like Eugene-Antole Demarcay to have it's color red, and … | |
Hello guys. Let's say i have a richTextBox, which contains text: [b]DaniWeb is a good IT Forum and I like it.[/b] I want like word 'Forum' to have color red, like: [b]DaniWeb is a good IT [COLOR="Red"]Forum[/COLOR] and I like it.[/b] | |
Hello guys. Let's say i have a unidimensional array: string[] names = {"John","Merlin","XMan","Kelvin",...,"Flash"}; How can i see how much elements i have ? I tryed with sizeof(names) but it doesn't works ... Next Question: I have a RichTextBox, and i select a text ... i change it's color, but when … | |
Hello guys. I want something like this. [CODE] if(getdate(month) == 1 && getdate(day) == 5) // 5 January // do code else if(getdate(month) == 12 && getdate(day) == 11) // 11 December // do another code // ... [/CODE] Is that possible ? | |
Hello guys. Is there any command or function, which allow me to change my screen's color, when i start the program ? Thanks | |
Hello guys. I have more Windows Forms Application, and i want to set which Form to start when i enter in my application. For example ... first i created the first form, [B]Form1[/B], and this appears when i run my program. After, i created [B]Form2[/B] ... i want, like when … | |
Hello guys. I have an application ( size ~3MB ) , with 5 forms. In my principal form i want , like when the program starts , a [B]SoundPlayer[/B] to sing. Ok , look what i did: first , i loaded my picture ( in resources - Audio - save … | |
Hello guys. I have made a Periodic Table. I have put 112 elements ( with buttons ) on it , and for each element ( button ) i used the events: Mouse_Enter & Mouse_Leave. [B]Mouse_Enter [/B]- in my picturebox8 , appears an image [B]Mouse_Leave[/B] - in my picturebox8 , dissapears … | |
Hello guys. I made a code , which contains: a Circle and a ball. The ball is moving on the axis of Circle. But I'm using Thread.Sleep(80) , and when i want to close the form , i must press X for 10+ times , and after that i recive … | |
Hello guys. I made an orbit ( circle ) and a ball. I built the code , like the ball to move on the orbit. But i have a problem with the orbit , because it flash. Is there any option like the orbit to don't flash ? Here's the … | |
Hello guys. I have a question. How can i save my ellipse in a variabile ? i need this because i need to change it's position SolidBrush redBrush = new SolidBrush(Color.RoyalBlue); e.Graphics.FillEllipse(redBrush, 145.0F,95.0F, 10.0F, 10.0F); | |
Hello Guys. Does C# includes a Graphic Header ? I want to create a circle , with some BIG DOTS on it , and that BIG DOTS to rotate on the circle axis. Is that possible ? | |
If i have a listBox , with 10 elements ( or whatever ) , can i select a element and to change it's color ? Only for that element , not for all ... Something like: listBox Collection: [B]ENG [COLOR="#ff0000"]UNG[/COLOR] IT RO [/B] Like in my example , to choose … | |
I have a question. Can i select a string from my RichTextBox ? For example: I have this text: English Francais Spaniol And i want to select Francais , but as string , not at int - lenght ... ( richTextBox1.Select(7,15); ) I want something like: richTextBox1.SelectString("Francais") , is there … | |
Hello guys. I made a Windows Form , with some buttons. Each button contains a windows form. If i press a button , the new windows form appear above the Principal Windows Form. But , if I don't close it , and i press another button , the new windows … | |
Hello guys. Can somebady help me to make a keybind for Gta San Andreas MultiPlayeri ? Look what i'm talking about: i want one like this ... : [url]http://files.uploadffs.com/a/2/a8c12e88/keyb.PNG[/url] When i'm in game , and i press 1 or 2 or 3 or another number selected from program , the … | |
Is there any function like this ? [url]http://wiki.sa-mp.com/wiki/Strmid[/url] Thank you :icon_cheesygrin: | |
Is there in C++ , a function like this ? [url]http://wiki.sa-mp.com/wiki/Format[/url] | |
Hello guys. Why i can't write a text in the box of a tab ? here: [url]http://img693.imageshack.us/img693/6571/heyky.png[/url] I changed the ToolTipText but no change , and if i change the Text it edit the name of the [B]tabPage1[/B] | |
Hello , i made a form with a button. When i press this button , it open a new form. If i close the new form , and i try to open it again , i recive a error. [code]See the end of this message for details on invoking just-in-time … | |
Hello guys. Could you like to help me to make a button browser ? I made the FORM , but i don't know what code to write , like when i press the GOOGLE button , to open my browser at [url]http://google.com[/url]. [url]http://files.uploadffs.com/d/3/74fd3cfe/googlebutton.PNG[/url] Thank you guys. | |
Hello guys. I made a picture box and i want like when a button is pressed , the BackgroundImage of Picture Box to be changed in a screenshot from my resources. Look what i did: [code] private void listBox1_SelectedIndexChanged(object sender, EventArgs e) { if (listBox1.SelectedItem.Equals("Rocket Launcher I")) pictureBox1.BackgroundImage = "sa-mp-042.png"; … | |
Can somebady can look at this clip ( [url]http://www.microsoft.com/resources/msdn/beginner/visualcsharp/AudioPart1CS.wvx[/url] ) and tell me what i need to type here: [url]http://files.uploadffs.com/d/6/427f6a2c/pfoa.PNG[/url] after new System.Media.Soundplayer ? | |
Hello guys. How can i set like in left tabel of the source code , to appear each line ? I found just the color for them ... [url]http://files.uploadffs.com/d/e/471ce739/lines.PNG[/url] I found , i checked 'Show all settings' , then i choose Text Editor - C# - General -> antipenultimate LineNumbers | |
Hello guys. I'm new here. I've got a problem with a CLR Windows Form Application. I've started to make Mendeleev Table , and i almost finished it. Here's a screenshot: [url]http://files.uploadffs.com/d/8/9b468fc8/screenshot.PNG[/url] I've tested it on my computer ( Debug ; starting .exe ; etc. ) , it works , but … |
The End.