Search results for query: *

  • Users: Pavle
  • Content: Threads
  • Order by date
  1. P

    CountDown Numbers game evaluate method is too slow

    I created CountDown Numbers game in c# and it works fine but it's too slow inside evaluate method where Stack is used to calculate result. I tried to use LinkedList instead of Stack but it's then even slower and I also tried to use Array instead but it's same like with Stack. Can someone please...
  2. P

    Database Question and Answers Connect

    Here is table with all columns: Here is table with all columns: http://imageshack.com/a/img923/6084/XNsNPv.png I created one table like this: CREATE TABLE Pitanja ( ID int NOT NULL IDENTITY (1,1) PRIMARY KEY, Pitanje nvarchar(1000) NOT NULL, Odgovor int NOT NULL, OpcijaA nvarchar(1000) NOT NULL...
  3. P

    make expression from numbers

    How to make that computer makes expression from given random numbers to calculate given three-digit number ,if he can't get that number he should calculate closest to him? In first three labels is random generated three-digit number,in second four labels are random generated numbers can be from...
  4. P

    textbox,user cannot enter letter

    How to make that when user enter word using given random letters from 12 labels in textbox,user cannot enter letter that does not exist in given letters!!!
  5. P

    same name for all labels?

    I am trying to make game that you have 12 random letters and with them you should make longest possible word that exist in ditionary.I want to loop through all labels and every time button is clicked each label separatly stops generating letters,when 12 label stops generating letters timer...
  6. P

    Create shortcut

    I am trying to make app that creates shortcut for selected program.When program starts it show all programs in listbox and you can search for program.How to sort list alphabetically and how to create shortcut from selected program inside listbox and name it like selected program.
  7. P

    License key generator

    I made program in C# that generates random license keys with 24,25,26,27,28,29,30 characters lenght.How to make 100 random keys with 24,25,26,27,28,29,30 characters lenght?
  8. P

    Shuffle Questions and Answers

    I am trying to make quiz in C#.I made questions and answers and how should I shuffle them? public void Questions() { string[] questions = new string[4]; label1.Text = questions[0] = "What variable is used to display whole number"; label1.Text =...
  9. P

    System Information

    I want to make program in C# that shows system information of PC.How can I get all this information for PC like: OS version,cpu info,cpu temperature.... https://postimg.org/image/4pyh4xbwl/ https://postimg.org/image/u5t2epylb/ https://postimg.org/image/5dtg7hhen/...
  10. P

    display different things in form

    How can I switch between functions inside one form? For example when I click button colors I want to display picturebox with resistor colors,when I click button resistance I want to show textbox for input value...
  11. P

    Question Resistor color code

    I made resistor app that calculates resistance from colors but I don't know how to make app that coverts resistance to color.Can you help me make this?
Back
Top Bottom