I was born in Piatra-Neamt, a medium city placed in Romania. I am student at National Colege of Computer Science in 9th grade. Since I was a child I dreamed to program computers but, unfortunately, last year I started doing this because I thought it…
- Interests
- filmmakeprogramming, design, music (just listen)
37 Posted Topics
Re: i think that line is useless child.FormClosed += new FormClosedEventHandler(child_FormClosed); why would you need this? | |
Re: For Windows Phone OS, you can use the **Microsoft XNA**. On [MSXNA](https://msxna.codeplex.com/documentation) you can find all things about XNA. And documentatnion of XNA avaliable on [MSDN](http://msdn.microsoft.com/en-us/library/bb200104.aspx). | |
| |
Hello, i have these files in main folder: *index.html probleme/p1.html probleme/p2.html probleme/p3.html probleme/p4.html* what link should I write to acces *index.html* from *p1.html* ? I don't want to write the long link *D:\Bogdan\Proiecte\...* | |
Re: Try [this](http://www.cleverfiles.com/). | |
I found this interesting *game* and I thought it would be nice to share with you. It's called [Drowning in Problems](http://game.notch.net/drowning/#) and **suddenly** it makes me to don't want to get old. :( | |
Hello guys. I need an idea. How can I calculate GCF of many numbers? I thought I could calculate two by two numbers, but it not seems to be a very effective idea. There is my function: int gcf (unsigned int x, unsigned int y) { return (y == 0) … | |
Hello, guys, I encountered a big problem. There is a genereted matrix of buttons: private void Single_Load(object sender, EventArgs e) { //code here for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { //a lot of working code here b[i, … | |
Hello. I have a button on a web page and when the mouse is over it becomes larger (don't ask why). .buton { /* some code here*/ height:50px; width:100px; text-decoration:none; text-align:center; text-shadow:1px 1px 0px #ffffff; transition:width 0.5s, height 0.5s; } .buton:hover { width:200px; height:200px; } In body is this code: … | |
Re: You said your computer has many users accounts. Try to log on Administrator's account. | |
Re: You could try this: void Vowel(char c) { int k = c; // to diplay the right letter c = tolower(c); // to avoid the verification of both types of letter if (c == 'a' || c == 'e' || c == 'i' || c == 'i' || c == … | |
Re: Check the **mute** button and check codecs that you have installed, maybe something is missing. | |
Re: Take a look [**here**](http://www.cs2php.com/). I hope this will help you. | |
Re: Depends on what criteria you want to search the array. Take a look at this for ideas on how to make your program a bit more object oriented (if you are up to that challenge). The larger example contains some more ideas on using functors, algorithms, and sequence containers with … | |
Re: There is all I have: [**www.codeincodeblock.com**](http://www.codeincodeblock.com/2012/04/list-of-top-ten-college-mini-projects.html) [**Martyr2’s Mega Project List**](http://www.dreamincode.net/forums/topic/78802-martyr2s-mega-project-ideas-list/) | |
Hello guys. I developed a simple game in C# on Windows (WFA). Now I want to crate a database with accounts and all stuff. I know to crate this with a SQL Local Database, but I think there should be a host where to put that DB to be accessed … | |
Hello, fellows. I have a simple question to you, maybe you can help me. I try to save data in C#. For exemple, i make an application and the user select his options. **What type of file should I use to save his options?** The next time the application opens, … | |
Re: void PrintArray() { for(i=0;i<7;i++) //there could be a n which could be 7... cout<<v[i]<<' '; //v is your array } aaaand unsigned SumArray() { unsigned Sum; for(i=0;i<7;i++) S+=v[i]; return S; } | |
Re: i think you can do it better with C# or smt.. | |
Hi. I try to change the text color of console in C++. I know some commands like . system("color fg"); But I want to change the color of only one line of console. Is this possible? Would someone help me, please? | |
Hello. How can I make a button transparent? I know i can select color Transparent, but that takes the background color, and i want to be transparent all because i have a video behind it. What can i do? :o3 I have a video and there is some buttons which … | |
Re: what do you mean? design? give us an exemple | |
Hello guys. I have queries, i made a matrix of Buttons and another of Panels and everythings is ok, that works. There is the code: private void button1_Click(object sender, EventArgs e) { for (int i = 0; i < 3; i++) for (int j = 0; j < 3; j++) … | |
Hello, I try to play a video I i don't know how.. I searched and i found some tips and articles, but all of it if about Windows Media Player. It's fine, but i need to play something lika an intro an i don't wanna show all that buttons of … | |
Hello guys. I'm play a vide with Microsoft.DirectX.AudioVideoPlayback in C#. i'm tried to 'freeze' the last scene from video. I don't succeed, so I decide to show a picture with last sceen. And I don't succeed again. I have this code: private void button1_Click(object sender, EventArgs e) { Xvid.Owner = … | |
Re: You have to change progress bar first, you can make this in Properties tab or can program it: `progressBar1.Style = ProgressBarStyle.Marquee` Good luck; | |
Re: ioatream is a library, Standard **I**nput / **O**utput **Stream**s Library. Header that defines the standard input/output stream objects like cerr, clog, cout or cin. | |
Hello, guys. I need your help. :o3 I want to create a MessageBox which may "communicate" with form. Actually, i need to communicate with form. It's a kind of backtraking and I want to display in more ways the solution. void afisare() { int dame = int.Parse(Dame.Text); afisari++; for (int … | |
Hello guys. Does anyone have some ideas for some **cool** projects in C#? | |
Re: i have a question.. why do you used C# for this? you can use c++ for Console aplication, i think that is much simpler for this kind of programs.. | |
Re: you should post all error message, with error lines | |
Hello guys. the AutoSize is true, but the form is not autsizing :( first the form looks like [this](http://i60.tinypic.com/2s1uk1v.jpg) . when i press that button generates a matrix of buttons but the form is not autsizing it should look like this [this](http://i58.tinypic.com/11gni9h.jpg) . but no change, it remains at the … | |
Re: hmm you can try to learn C#, is like C++, but more effective | |
Re: oh, the *strcmp* condition is wrong.. you can write if( strcmp( ch, "*" )==0 || strcmp( ch, "/" )==0 || strcmp( ch, "%" )==0 || strcmp( ch, "+" )==0 || strcmp( ch, "-" )==0 ) so, you have `strcmp(op1, op2)` if is `==0` that means op1 and op2 is equal | |
Re: you can try to read [this](http://faq.cprogramming.com/cgi-bin/smartfaq.cgi?answer=1048382857&id=1043284392). Good luck. | |
Re: where is the global variable? :/ |
The End.