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

Search:

Type: Posts; User: toraj58

Page 1 of 36 1 2 3 4

Search: Search took 0.12 seconds.

  1. Replies
    7
    Views
    2,225

    Re: hide from task manager

    hannes in post #3 you gave me the clue because when i saw that solution is not platfrom-independent (as i expected) i tried to change my approach so thank you very much for helping me always my...
  2. Replies
    7
    Views
    2,225

    Re: hide from task manager

    yes. i have also decided to create a service for this issue.
    thanks.
  3. Replies
    7
    Views
    2,225

    Re: hide from task manager

    if i don't want to hide the process i prefer to have a watcher process for the main process and when main process get killed the watcher process will restart it and vice versa.

    thanks both of you....
  4. Replies
    7
    Views
    2,225

    hide from task manager

    how to hide a process from windows task manager?

    i want it to work in XP, VISTA and 7
  5. Re: How to write a console application in Visual C# Studio 2008

    consider this link:

    http://www.google.com/search?hl=en&source=hp&q=c%23+console+application&rlz=1R2ASUS_en

    try it yourself step by step!
  6. Replies
    2,341
    Views
    2,854,327

    Sticky: Re: CG members photo album

    Touraj:
    Version 2010 (last release)
  7. Re: Advice needed: Converting a dialog based app to a web based app

    somewhat its' possible to convert a win app to web app with almost all the features by using ASP.NET AJAX ToolKit for .net 2.0 or 3.5.

    you need to know how to work with AJAX toolkit. basicly it is...
  8. Replies
    8
    Views
    9,994

    Re: Add new line to the text in a button

    private void button1_Click(object sender, EventArgs e)
    {
    button1.Text = "line1\nline2";
    }
  9. Replies
    3
    Views
    7,844

    Re: how to get CPU ID?

    thanks for the link.

    but i need a solution that i can implement it with both java code and c++.
    in my java code i use aspect and i can not invoke c++ dll when i use aspect. so i should write code...
  10. Replies
    1
    Views
    991

    get MAC Address

    how to get mac address of the system.

    my OS is linux fedora.

    i have done it already in java but i don't know how to get MAC ADDress with C++.
  11. Replies
    3
    Views
    7,844

    how to get CPU ID?

    How i can get CPU ID.
    the OS i use is Fedora 10.
  12. Re: Difference in performance between CSharp and C++

    for me this feature that c++ allows default arguments on function parameters is good also.
  13. Replies
    6
    Views
    8,000

    Re: Change the shape of the form in C#

    for one corner i calculated the coordination and made the upper left corner round-shaped; you can calculate yourself coordination for other three corners and then make them look rounded just adding a...
  14. Replies
    1
    Views
    11,983

    Re: Using recursion to add odd numbers

    i revised the code a little for you:



    using System;
    using System.Collections.Generic;
    using System.Text;

    namespace Recursive
    {
  15. Replies
    1
    Views
    1,086

    Re: Free disk space and attributes...

    you only need some math calculation to get free space in GB:



    private void button1_Click(object sender, EventArgs e)
    {
    ManagementObject disk = new...
  16. Replies
    2
    Views
    1,052

    Re: client and server code

    also some times asp.net server controls create client-side codes for example validation controls that for security create both server and client-side codes for validation.
  17. Re: please help me about when i am runing iis server then this message is display

    in this case first thing i do is copy and pase the error number and message to google and in most cases i redirect to microsft site that describe the error and ways to fix it and maybe workaround of...
  18. Replies
    8
    Views
    2,012

    Re: save data on client before send to server

    session is server side base and will be expired when user close explorer.
    better choice is cookie but it can be disabled bu users how ever these days most users have it enabled.
  19. Replies
    2
    Views
    4,166

    Re: treeview scroll event

    don't look for it there is no such event. for problems like this you need using windos APIs or some workaround and creative ways. i have posted some solution for a problem like this for two listbox...
  20. Replies
    4
    Views
    2,039

    Re: Debugging Multithreaded Application

    it deponds on kind of synchronization you have used. for example performance of ReaderWriterLockSlim is better than ReaderWriterLock becuase of the bug in ReaderWriterLock. so tweeking your multi...
  21. Re: Program stops working when the form looses focus

    your application should be built on a thread apartment to interact with os. so you need to use [STAThread] attribute for your main method.
  22. Replies
    4
    Views
    1,388

    Re: Inserting textbox values in table

    yes it is not necessary to use GridView for this problem.

    i wrote this code for you:



    private void button1_Click(object sender, EventArgs e)
    {
    string number =...
  23. Re: Load flash movies directly from any source (no temporary files)+snap a frame

    you should add flash activex to your project then using its properties and methods.
    also there are commercial plugins for flash in the web that can do a lot of good job for you.
    ...
  24. Replies
    5
    Views
    6,262

    Re: signon.rememberpassword

    thanks hans
  25. Replies
    0
    Views
    1,560

    tomcat load module

    i want to load modules (.JAR file) in tomcat that exists in folder other than webapps in tomcat.
    for example my module resides in a folder such as "/opt/mymodules".
    how i should so it and what...
Results 1 to 25 of 877
Page 1 of 36 1 2 3 4





Click Here to Expand Forum to Full Width

Featured