Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
D

D i x y

@D i x y
About
Posts
120
Topics
83
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to make 30 days trial
    D D i x y

    Hello Friends, I am developing a windows application where i need to make two versions for the application one is Full and another is DEMO version My Question is how to make DEMO version 30 Days Trial and after 30 days it will expires if user changes system date back or forward then one day will be subtracted from trail.. Thanks

    C# tutorial question announcement

  • Problem With Rich Text Box
    D D i x y

    Hello Friends, I am developing a windows application in which i have used a RichTextBox. I want that some data in RichTextBox comes in bold and some text in Regular size. Please tell me how can i do that... Thanks

    C# help question

  • Connection to MySQL
    D D i x y

    Sir as you give me the link of connection string that is used to connect to MySQL server that's great but as i want to connect to like this user will enter Server Name, UserID and Password in the available textboxes and after that it will click on connect button that it should connect with all the available databases and shows them in Listbox Thanks

    C# help database mysql sysadmin tutorial

  • Connection to MySQL
    D D i x y

    Hello Friends, I am developing an windows application in which i need to connect to MySQL Server through my application mean user enter the User Name and Password after that in a list box all the database of MySQL comes in Listbox. So my problem is how to connect to MySQL database through my application Please help me i am new in database.. Thanks

    C# help database mysql sysadmin tutorial

  • Setup and deployment
    D D i x y

    Hello Friends, I am making a setup wizard for my application i have made it successfully its work great. Now i want that when my application install then after that it will ask for restart the system now or later. How can i achieve this please help me. Thanks in Advance

    C# sysadmin help question workspace

  • Help for Crystal Report
    D D i x y

    See these links http://www.c-sharpcorner.com/UploadFile/john_charles/CrystalReportsNET06052008140937PM/CrystalReportsNET.aspx[^] http://www.devarticles.com/c/a/C-Sharp/Creating-Graphical-Reports-With-Crystal-Reports-in-.NET/[^]

    C# csharp help

  • Rank Checker
    D D i x y

    Hello Friends I want to make a windows application that can check any website rank according to the keyword on any of the search engines like Google, Yahoo, and MSN. Can any one help me how can i start.. i got a link that is of web application i tried it to convert into C# windows application but i am unable to do that.. http://www.codeproject.com/KB/aspnet/search_engine_rank_check.aspx

    C# csharp asp-net com help question

  • CODE check digit calculation
    D D i x y

    [Message Deleted]

    C# question

  • CODE check digit calculation
    D D i x y

    which code u want

    C# question

  • Help wanted
    D D i x y

    You can do like this.. ON MDI Form public bool MenuItemControl { set { this.newToolStripMenuItem.Enabled = value; } } ON FORM CLOSED EVENT MDIParentForm MdiPF = (MDIParentForm)this.MdiParent;

    C# help question

  • MSI Plessey Check digit calculation
    D D i x y

    private string msiplessey(string abc) { string value = ""; string values = ""; string adds = ""; string evenvalues = ""; string evenval = ""; string evenadds = ""; string resultadd = ""; string fval = ""; long add = 0; long abcd; long evenadd = 0; long result; int checkvalue = 0; int finalresult; for (int i = abc.Length - 1; i > -1; i -= 2) { value += abc.Substring(i, 1); } for (int j = value.Length - 1; j >= 0; j--) { values += value.Substring(j, 1); } abcd = (Convert.ToInt64(values) * 2); string oddvalue = abcd.ToString(); for (int k = 0; k < oddvalue.Length; k++) { adds = oddvalue.Substring(k, 1); add = add + Convert.ToInt64(adds); } for (int l = abc.Length - 2; l > -1; l -= 2) { evenvalues += abc.Substring(l, 1); } for (int m = evenvalues.Length - 1; m >= 0; m--) { evenval += evenvalues.Substring(m, 1); } for (int n = 0; n < evenval.Length; n++) { evenadds = evenval.Substring(n, 1); evenadd = evenadd + Convert.ToInt64(evenadds); } result = add + evenadd; resultadd = result.ToString(); finalresult = Convert.ToInt32(resultadd.Length); fval = resultadd.Substring(finalresult - 1); checkvalue = (10 - (Convert.ToInt32(fval))); if (checkvalue == 10) { checkvalue = 0; } else { checkvalue = (10 - (Convert.ToInt32(fval))); } return checkvalue.ToString(); }

    C# question

  • folderbrowserdialog
    D D i x y

    You can not rename buttons on folder browser dilaog

    C# question

  • Form Opacity
    D D i x y

    Hi, I am Developing an windows application i want when ever my application runs then form opacity will increase slowly from 0 to 100% on timer tick. Thanks & Regards

    C#

  • Number position
    D D i x y

    The number to be encoded is 173946. Starting from the right side of the number (the units position), collect all of the odd position digits (i.e. digit 1, digit 3, digit 5, etc.) and create a new number leaving the digits in their left to right order. The new number would be 796.

    C#

  • Disable copy paste in textbox
    D D i x y

    Hello, how to disbale copy paste from and to textbox programatically

    C# tutorial

  • Keypress event
    D D i x y

    On keypress event i am disallow some of the some of the ascii value like this if (((e.KeyChar >= 91 && e.KeyChar <= 96) || e.KeyChar == 123 || e.KeyChar == 124 || e.KeyChar == 125 || e.KeyChar == 42 || e.KeyChar == 33 || e.KeyChar == 35 || e.KeyChar == 38 || e.KeyChar == 40 || e.KeyChar == 39 || e.KeyChar == 34 || e.KeyChar == 41 || e.KeyChar == 44 || e.KeyChar == 64 || e.KeyChar == 61 || e.KeyChar == 59 || e.KeyChar == 58 || e.KeyChar == 63 || e.KeyChar == 60 || e.KeyChar == 62) != false) { e.Handled = true; } Now hat i want when user press space bar (Ascii value 32) then it will print '~' (Ascii value 126) in place of Ascii 32 if user enter ABCD(SPACE)FGT THEN IT SHOULD PRINT ABCD~FGT

    C#

  • MDI Parent and Child Problem
    D D i x y

    I am developing an windows application where i have an MDI parent form that has menu strip i want that what ever option i have select from menu strip that may effect on MDI child form. Suppose that I have a label control on the child form i what to change the text color of that label then i have selected the option from menustrip that is in MDIparent so how can i show color dialog from MDI parent that can work for MDI Child form...

    C# help question

  • Problem with printdialog
    D D i x y

    so how can i do this dynamically...............

    C# graphics help

  • Problem with printdialog
    D D i x y

    Hello friends i am developing an application in which there is printing option... The printing option is working well but the problem is when the printdialog shows and by default the numbers of copies is 1 and if i increase the numbers of copies 2 or 3 then its only print one copy only why number of copies option is not working.... CODE int count = Application.OpenForms.Count; for (int i = 1; i < count; i++) { PrintDialog myPrintDialog = new PrintDialog(); memoryImage = new System.Drawing.Bitmap(panel1.Width, panel1.Height); panel1.DrawToBitmap(memoryImage, panel1.ClientRectangle); if (myPrintDialog.ShowDialog() == DialogResult.OK) { myPrintDialog.Document = printDocument1; printDocument1.PrintController = new StandardPrintController(); printDocument1.Print(); } printDocument1.Dispose(); }

    C# graphics help

  • Check digit calculation
    D D i x y

    I am developing an windows application in which i have to calculate check digit... For Example: Data to be encoded is "21435". encode: 2 1 4 3 5 Weighting: 5 4 3 2 1 ----------------------------------- Totals: 10 4 12 6 5 ----------------------------------- Then add them: 10 + 4 + 12 + 6 + 5 = 37 Next divide the total by 11 and get the remainder which is 37/11 = 3 remainder 4. The remainder is the check character. To type encoding the data 21435 that can be scanned, print (214354). How can i do this check digit calculation on every keypress event of textbox....... Help me in getting solution.....................

    C# help tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups