Click here to Skip to main content
Page 1 of 1
Page Size: 10 · 25 · 50


Author filtered by: Radoslav Dimitrov [x]
How to use Unicode in C++ by Radoslav Dimitrov
Question 11 May 2013   license: CPOL
Hello!I have this unicode:☹ - U+2639How can I use it in C++?NOTE: With any custom library or something like that?Pls help me!I need this so much for my project.Tnx.
Answer 9 May 2013   license: CPOL
There is an article for that!!!stop asking questions what already are articles!!!
Answer 9 May 2013   license: CPOL
Here you are the code of Merge Sort:/* author: Radoslav Dimitrov OMG Grade 6*/#include #include #include using namespace std;int mergeSort(int arr[], int temp[], int lqvo, int dqsno);int merge(int arr[], int temp[], int lqvo, int sreda, int dqsno);int mergeSort(int...
Answer 9 May 2013   license: CPOL
SELECT Something FROM DataWHERE Something = NULL Always return false with = !!!SELECT Something from Data WHERE Something IS NULLthe value of NULL isn't equal to NULL:SELECT Something FROM DataWHERE NULL = NULL OR NULL IS NULLreturn FALSE!With String '' you can...
how to edit an url in c# by Radoslav Dimitrov
Answer 9 May 2013   license: CPOL
Navigate(string URL)-> Changes the URL of a WebBrowser
C#
Answer 9 May 2013   license: CPOL
Get a look of this:SQL Server Management Studio: attach database [^]I'd like I was helpful.
Answer 9 May 2013   license: CPOL
Hello!I'll say you for .txt files (text files). I brlive for .doc is the same.string fromLabel;string fromTB;string Path = @"C:\Users\Administrator\"; //Write the path herevoid FileWrite(string TextHere, string path){ string line = TextHere; System.IO.StreamWriter...
rezalution in c# winForm by Radoslav Dimitrov
Answer 9 May 2013   license: CPOL
This was already a question!Look at this link:Windows form size depending on screen resolution[^]
C#
Answer 9 May 2013   license: CPOL
I'll do it like this:SELECT SUM(ME)/SUM(STE)*24 FROM myTable WHERE DateNew>=DATEADD(YourDay,-90,GetDate())
String index on C#!? by Radoslav Dimitrov
Question 9 May 2013   license: CPOL
Hello!I wanna do a translater on thats using an array with index a string. Like this:string[] Words = new string[10];//How can I do this:Words["Hello"] = "Zdrasti";//Zdrasti a Bulgrian word But I do not know how!(If it is possible). I looked the articles - There was nothing...
C#
Answer 8 May 2013   license: CPOL
You can do a an Array of Matrixes (NOTE Matrix must be a structure where you save R, G, B)it will look something like this://set them how you wishint MaxX = 30;int MaxZ = 30;int MaxY = 30;public struct ColorM{ int R; int G; int B;}ColorM[,,] Area =...
Answer 8 May 2013   license: CPOL
You can use a converter.For double:var index = 0;Exam[index].data1 = BitConverter.ToDouble(byteArr, 0);//do it for data2, data3 . . .index++;. . .
C#
Answer 8 May 2013   license: CPOL
Hey!I wroted the dijgstra 2 days ago.If you want look this code:#include #define MAXN 150#define MAX_VALUE 10000#define NO_PARENT (unsigned)(-1)const unsigned S = 1;const unsigned N = 10;unsigned Matrix[MAXN][MAXN] ={ {0, 23, 0, 0, 0, 0, 0, 8, 0, 0}, {23, 0, 0, 3,...
C++
Yes I do by Radoslav Dimitrov
Random dungeon generator! by Radoslav Dimitrov
Question 7 May 2013   license: CPOL
Hello!I wanna do a dungeon crawler. NOTE: everytime to generate a random dungeon!Can you say me an good algorithm for the generating???:)
How to get the biggest number? by Radoslav Dimitrov
Answer 7 May 2013   license: CPOL
int TExcel = 0;TExcel = dc.Hotel_Meals_TBLs.Max(a => a.CodeNumber);It is allready converted!
C++ windows programming question by Radoslav Dimitrov
Answer 7 May 2013   license: CPOL
I am sory for this code :( !Here is it:#include #include using namespace std; int main () { ofstream myfile; while(true) { string password; string username; cout > username; cout > password; ...
C++ windows programming question by Radoslav Dimitrov
Answer 7 May 2013   license: CPOL
No, noooo!I know that you can do this with the SQL. But you can do evrything in C++! 1. Create a folder called "Login Panel" (I recomend this name)2. Create 2 files: username.txt password.txt NOTE: The code must be in the same folder!3. The code: #include...
I need some help for drawing! by Radoslav Dimitrov
Question 7 May 2013   license: CPOL
PLS I NEED SOME HELP WITH THE DRAWING ON C#1. What Application? (Console, Win Forms or anything else)2. How to write a line between 2 points?3. How to write a circle?4. How to do a 3D thing like cube or sphere?I need this! Pls some help! I am asking much! Sry!:)
C#
Answer 7 May 2013   license: CPOL
Yes I know this problem!I can solve it! (but on Linux :( )It gives this error because you cannot create users if you haven't got admin's premissions!You can hack the password if you want with C++. I will do a video how to do it (Working on Windows 7, XP, Vista, 8, 2000 and more!)....
Answer 7 May 2013   license: CPOL
I asked the same question!Here is the Navigate(string URL) function: private void Navigate(String address) { if (String.IsNullOrEmpty(address)) return; if (address.Equals("about:blank")) return; if (!address.StartsWith("http://")...
C#
Answer 7 May 2013   license: CPOL
Hey its me again. The border color is the same, but ForgegroundColor:nameMenu.ForeColor = Color.YourColor;NOTE: It's for all Windows Forms Toolbox items like buttons, menues, textbox and more.It easy!I hope I was helpful! :)
C#
Answer 7 May 2013   license: CPOL
Here is a code (ToolStripMenu):private void myToolStripMenuItem_Click(object sender, EventArgs e){ myToolStripMenuItem.BackColor = Color.Red; myToolStripMenuItem.BackColor = Color.Green; myToolStripMenuItem.BackColor = Color.Blue; myToolStripMenuItem.BackColor =...
C#
Answer 6 May 2013   license: CPOL
Actually I solved it with the Navigate. TNX to Tadit Dash.He said I can do it with Navigate. But there isn't a function Navigate.So here is the code: private void Navigate(String address) { if (String.IsNullOrEmpty(address)) return; if...
C#
Question 5 May 2013   license: CPOL
How to add a text from label to the URL of a WebBrowser.ToolBox -> LabelToolBox -> WebBrowserI wanna do this: string URL_ST = ""; public Form1() { InitializeComponent(); } private void textBox1_TextChanged(object sender,...
C#

Page 1 of 1


Advertise | Privacy | Mobile
Web02 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid