Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
49% Quality Score
Upvotes Received
4
Posts with Upvotes
4
Upvoting Members
2
Downvotes Received
4
Posts with Downvotes
3
Downvoting Members
3
0 Endorsements
Ranked #4K
~25.0K People Reached
About Me

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

Member Avatar for Geekitygeek

i think that line is useless child.FormClosed += new FormClosedEventHandler(child_FormClosed); why would you need this?

Member Avatar for jacss1x
1
3K
Member Avatar for ToucheAmore

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).

Member Avatar for priyaspageo
0
549
Member Avatar for ddanbe
Member Avatar for BogdanCov

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\...*

Member Avatar for shashikumar s g
0
110
Member Avatar for taoorion
Member Avatar for BogdanCov

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. :(

Member Avatar for vegaseat
1
287
Member Avatar for BogdanCov

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) …

Member Avatar for tapananand
0
233
Member Avatar for BogdanCov

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, …

Member Avatar for BogdanCov
1
220
Member Avatar for BogdanCov

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: …

Member Avatar for BogdanCov
0
217
Member Avatar for abu.rasheed3

You said your computer has many users accounts. Try to log on Administrator's account.

Member Avatar for rubberman
0
202
Member Avatar for daChi
Member Avatar for RALTzzz

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 == …

Member Avatar for Avishek_1
0
317
Member Avatar for Elwin_1

Check the **mute** button and check codecs that you have installed, maybe something is missing.

Member Avatar for Elwin_1
0
194
Member Avatar for nikesh.yadav
Member Avatar for BogdanCov
1
6K
Member Avatar for aman.theman1

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 …

Member Avatar for BogdanCov
0
203
Member Avatar for Avishek_1

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/)

Member Avatar for Avishek_1
0
237
Member Avatar for BogdanCov

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 …

Member Avatar for JorgeM
0
206
Member Avatar for BogdanCov

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, …

Member Avatar for deceptikon
0
131
Member Avatar for wrda

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; }

Member Avatar for Slavi
-2
143
Member Avatar for Adem_1
Member Avatar for BogdanCov

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?

Member Avatar for c0d3rH4ck
0
5K
Member Avatar for BogdanCov

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 …

Member Avatar for ddanbe
0
220
Member Avatar for AmrMohammed
Member Avatar for BogdanCov

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++) …

Member Avatar for BogdanCov
0
192
Member Avatar for BogdanCov

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 …

Member Avatar for Hanif_1
0
268
Member Avatar for BogdanCov

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 = …

Member Avatar for Momerath
0
181
Member Avatar for oren.turgeman.9

You have to change progress bar first, you can make this in Properties tab or can program it: `progressBar1.Style = ProgressBarStyle.Marquee` Good luck;

Member Avatar for oren.turgeman.9
0
232
Member Avatar for dovlet.eminov

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.

Member Avatar for rajii93
0
298
Member Avatar for BogdanCov

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 …

Member Avatar for ddanbe
0
174
Member Avatar for BogdanCov

Hello guys. Does anyone have some ideas for some **cool** projects in C#?

Member Avatar for castajiz_2
0
137
Member Avatar for theashman88

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..

Member Avatar for tinstaafl
0
1K
Member Avatar for haider885
Member Avatar for BogdanCov

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 …

Member Avatar for BogdanCov
0
167
Member Avatar for skorm909
Member Avatar for beSmart4

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

Member Avatar for Schol-R-LEA
0
169
Member Avatar for sabin_silwal

you can try to read [this](http://faq.cprogramming.com/cgi-bin/smartfaq.cgi?answer=1048382857&id=1043284392). Good luck.

Member Avatar for BogdanCov
1
137
Member Avatar for Martin_3

The End.