enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. Number To Word (Arabic Version) - CodeProject

    www.codeproject.com/articles/112949/number-to-word-arabic...

    int numberToProcess = (int)(tempNumber % 1000); tempNumber = tempNumber / 1000; // convert group into its text. string groupDescription = ProcessArabicGroup. (numberToProcess, group, Math.Floor(tempNumber)); group++; Then we have to process each group & convert it to its text depending on its group level.

  3. Managing C++ Projects with Conan and CMake- CodeProject

    www.codeproject.com/Articles/5385907/Managing-Cplusplus...

    For most projects, using CMake involves three steps: Define build instructions in CMakeLists.txt. Execute the cmake command to read CMakeLists.txt and generate a buildsystem. Execute the cmake --build command to build the target from the buildsystem.

  4. Fast Colored TextBox for Syntax Highlighting - CodeProject

    www.codeproject.com/Articles/161871/Fast-Colored-TextBox...

    fastColoredTextBox1.Selection.End.iLine); The result is shown in the picture: The component supports automatic search for fragments of collapse (folding area). To set the pattern (Regex) to find the beginning and end of folding block, use method Range.SetFoldingMarkers() in TextChanged handler.

  5. Converting InFix to PostFix using C# - CodeProject

    www.codeproject.com/Articles/370486/Converting-InFix-to...

    How to convert infix to postfix using c# in simple expressions. But the base is not defferent for complicated expressions.

  6. Difference Between Int32.Parse (), Convert.ToInt32 (), and Int32...

    www.codeproject.com/Articles/32885/Difference-Between-Int...

    Convert.ToInt32(string s) method converts the specified string representation of 32-bit signed integer equivalent. This calls in turn Int32.Parse () method. When s is a null reference, it will return 0 rather than throw ArgumentNullException. If s is other than integer value, it will throw FormatException.

  7. A Simple Geo Fencing Using Polygon Method - CodeProject

    www.codeproject.com/Articles/62482/A-Simple-Geo-Fencing...

    Creating a Polygon. On the map, draw a polygon to the area which is to be geo-fenced and capture the corner points of the polygon and store into XML file (see: PolygonPoints.XML). loadData() function will create a polygon using defined corner points in the XML file. DataSet ds = new DataSet(); ds.ReadXml("PolygonPoints.XML");

  8. Yet Another Splash Screen in C# - CodeProject

    www.codeproject.com/articles/37886/yet-another-splash...

    The code below is used in the constructor of the MainForm where I initiate the Splash screen and hide the form. C#. this.Hide(); Thread splashthread = new Thread(new ThreadStart(SplashScreen.ShowSplashScreen)); splashthread.IsBackground = true; splashthread.Start(); The code below is used to make the label’s background transparent on a ...

  9. Beginning C# - Chapter 13: Using Windows Form Controls -...

    www.codeproject.com/articles/1465/beginning-csharp-chapter...

    Let's create an example to demonstrate the basics of the control. The example demonstrates how to controls located on different pages on the tab control: 1. Create a new C# Windows Application project and name it TabControl. 2. Drag a TabControl control from the toolbox to the form.

  10. EMF Printer Spool File Viewer - CodeProject

    www.codeproject.com/Articles/10586/EMF-Printer-Spool-File...

    Download source (no .exe/.dll) - 138.6 KB; Download source - 233.8 KB; What is an EMF spool file? When an application sends pages to a printer they are held in an intermediary file which the application can write to and the printer driver can read from simultaneously.

  11. AVR Assembler 101 - CodeProject

    www.codeproject.com/articles/712610/avr-assembler

    Learn the basic of the AVR micro controller and the assembly language. Download shBrushAsm.js.zip - 1.4 KB. Download AVRAssembler101.zip - 13.6 KB. Download atmega1280_datasheet.zip - 4.6 MB. The AVR Assembler brush shBrushAsm.js.zip available as a download is a script to be used in conjunction with the Syntaxhighlighter script by Alex Gorbatchev.