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
D i x y
Posts
-
How to make 30 days trial -
Problem With Rich Text BoxHello 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
-
Connection to MySQLSir 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
-
Connection to MySQLHello 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
-
Setup and deploymentHello 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
-
Help for Crystal Report -
Rank CheckerHello 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
-
CODE check digit calculation[Message Deleted]
-
CODE check digit calculationwhich code u want
-
Help wantedYou can do like this.. ON MDI Form public bool MenuItemControl { set { this.newToolStripMenuItem.Enabled = value; } } ON FORM CLOSED EVENT MDIParentForm MdiPF = (MDIParentForm)this.MdiParent;
-
MSI Plessey Check digit calculationprivate 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(); }
-
folderbrowserdialogYou can not rename buttons on folder browser dilaog
-
Form OpacityHi, 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
-
Number positionThe 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.
-
Disable copy paste in textboxHello, how to disbale copy paste from and to textbox programatically
-
Keypress eventOn 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 -
MDI Parent and Child ProblemI 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...
-
Problem with printdialogso how can i do this dynamically...............
-
Problem with printdialogHello 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(); }
-
Check digit calculationI 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.....................