CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: rocky_upadhaya

Page 1 of 7 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    1,731

    Re: Problem with Visual Studio

    Thank You for the Reply. Well the problem was I was using the RTM release of the VS2008 Professional. I updated my .Net framework to sp1 but forgot to update my Visual studio. After updating my VS to...
  2. Re: Enabling button after some events

    Thank You...
  3. [RESOLVED] Enabling button after some events

    Hello there,

    Suppose there are 2 textboxes and a button in the window. And the button is disabled at the startup and is unclickable. But when User types something in the both textbox...
  4. Replies
    6
    Views
    2,642

    Re: Protect .net app against piracy!

    Thank You very much Mutant_Fruit, Other help will also be welcomed.
  5. Replies
    6
    Views
    2,642

    Re: Protect .net app against piracy!

    Thank you for your words but I like to have some knowledge on this topic too....Or is it totally foolish to have some knowledge on this topic??....Initially i am interested in licensing and serial...
  6. Replies
    6
    Views
    2,642

    Protect .net app against piracy!

    Hello!
    I need some help and ideas on protecting the .net application (C# especially) against piracy either by adding some extra codes like in ActiveLock or other application protection...
  7. Replies
    10
    Views
    22,579

    Re: Timer Problem in WPF.....

    That is the whole point...Thank you for recognising my exact problem of inaccurate timer.....Can I update stopwatch's value in Timer event because I want time on background precisely and on the UI as...
  8. Replies
    10
    Views
    22,579

    Re: Timer Problem in WPF.....

    The only problem that is on my code is that I was unable to update the second after exact value of ff........


    int realSec=1;
    int microSec=1;


    private void milliSecTimer_Tick(object sender,...
  9. Replies
    10
    Views
    22,579

    Re: Timer Problem in WPF.....

    Thank you for the code but i think you didn't got my question.....the programs requires start timer from 0 second and display in minute:seconf:ff format .....while using this code:


    private void...
  10. Replies
    10
    Views
    22,579

    Re: Timer Problem in WPF.....

    yes I am but when i used millisecond it is too fast for user to see..... I felt comfortable with
    time span of


    dispatcherTimer.Interval = new TimeSpan(1000000);

    But new problem...
  11. Replies
    3
    Views
    1,731

    [RESOLVED] Problem with Visual Studio

    Hi!
    I am not sure that this is the correct section to post this question and pardon me if I am wrong but still will be expecting help if you know something on this.......Well my problem is...
  12. Replies
    10
    Views
    22,579

    Re: Timer Problem in WPF.....

    no this code works fine..but i want other fast changing time after second as it gives sense of urgency....I could do it with 2 timers displayed at 2 different textblock bu not with one timer.....
  13. Replies
    13
    Views
    5,382

    Re: Enter Key to Work as Tab key....

    I am extreamly sorry for that but AllTextBoxes_KeyDown is not working....it does not give any error either...when I put the names for each textboxes it works well but when I try to put AllTextBoxes...
  14. Replies
    13
    Views
    5,382

    Re: Enter Key to Work as Tab key....

    Which Visual Studio are you guys using?? because I cannot see Inputbox on my VS2008 using .net framework 2008?? please Help me out here....
  15. Replies
    13
    Views
    5,382

    Re: Enter Key to Work as Tab key....

    should i ask only x + y = ------- in a single page?? the whole page would be so much empty, plus I have 24 question and 24 text boxes area to take the answer....
  16. Replies
    13
    Views
    5,382

    Re: Enter Key to Work as Tab key....

    I am doing this simple math game where young kids will feel easier to answer the next question after pressing enter isn't it??
  17. Replies
    13
    Views
    5,382

    Enter Key to Work as Tab key....

    Hello!
    I have a problem where i have a lots of textboxes to take input....so now whenever i enter a value in it and move on to another textbox I press 'Tab' key to shift between the texboxes so...
  18. Replies
    10
    Views
    22,579

    Timer Problem in WPF.....

    Hello,
    As there is no Timer control item in the WPF I have used DispatcherTimer class in my code to show the countdown that starts from 1 and ticks every second.....but what I want to do and...
  19. Replies
    2
    Views
    14,715

    Re: Numbers Only Textboxes!!

    This method is similar to above but it accepts tabs too......:D


    private void Number_PreviewTextInput(object sender, TextCompositionEventArgs e)
    {
    char c =...
  20. Re: Problem on Generating Random Numbers......

    Thank You for your Help and suggestion, method worked perfectly on me..
  21. Problem on Generating Random Numbers......

    Hi!
    I am stuck in a problem which requires generation of 7 integer random numbers between 0 to 12, and store it in the 7 different variables.....what i want to do is all those 7 variable have...
  22. Replies
    2
    Views
    14,715

    Re: Numbers Only Textboxes!!

    Although I haven't tested the above code , It should work just fine....but I have found and successfully used following bit of code.....Hope this Helps someone along the way.....



    private void...
  23. Replies
    2
    Views
    14,715

    Numbers Only Textboxes!!

    Hi there!
    I am having some problem with user input validation.....what I want to do is use Numbers only Text box in WPF......While user gives an input it must not allow the use of strings or any...
  24. Replies
    3
    Views
    1,147

    Re: Beginner C# hw help!!

    Firstly You need to learn to put your code between
    tags

    Secondly Please make it clear what you want to achive here? If you just have to print the left to right pyramid why do you have to ask a...
  25. Replies
    22
    Views
    6,173

    Re: Numbers Only Textboxes!!

    Hi! Arjay, with regards
    Thaks for the suggestion. IT was stupid of me not to remember that I was working on WPF...And not trying code given by foamy, was all my bad but i had seen the same code on 1...
Results 1 to 25 of 168
Page 1 of 7 1 2 3 4





Click Here to Expand Forum to Full Width

Featured