Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. amanyasin

    Problem in returning value from a class

    Bonjour, Dear all I am facing general programming related logical error. I want to access bolean variable of the class by using get method. but it is not giving the right result. When i read the counter and boolean variable by getcount() and isPathExist() methods. Each time it returns "0" for...
  2. amanyasin

    using class templates in .h file

    Hi Dear i want to use class template in header file .h , i also want to keep my code separat in .cpp file. can you guide me how it is possible? =============== .h file template<typename t> class myclass { void myfunction(t); }; ============== .cpp file template<typename t> void...
  3. amanyasin

    To rewrite single line rather than clear screen

    Hi I want to rewrite single line in my VC++ output. I know there is a Clear screen function. but it will be clear whole screen. Is there any method available to update single line in output window alongwith the execution of rest of the program. Thanks in advance
  4. amanyasin

    To erase specifice element in the Vector

    Hi, Dear all, On each iteration in Vector , i want to deduce one element and delete it. then pass remaining vector to my function. so, problem is this. it is not erasing the specific vector typedef std::vector < int > nodeList; nodeList temp; nodeList neighborX = this->computeNeighbors(x)...
  5. amanyasin

    To calculate subset of a set of variables

    Dear i need your help more. I want to populate a vector on each combination. Then i will pass this vector to my statistical test. and then repopulate it with new combination. so, how i can deal with, for (size_t i = k; i < org.size(); i++) vout(os,pre) << org[i] << '\n'; Again...
  6. amanyasin

    To calculate subset of a set of variables

    Dear thanks it works fine.
  7. amanyasin

    To calculate subset of a set of variables

    Is there any method available in Boost graph liberary to calculate subsets of length N of a SET? if no please guide me how i can calculate it. e.g. vector type set = { a, b, c, d, e, f, g, h, i, j } subsets of size n=2 {a, b}, {a, c} .....{b, c}......................... subsets of size n=3...
  8. amanyasin

    About handling dynamically variable names...

    Hi Dear all, I want to create dynamically multidimensional vector. Its dimension depends upon user input. According to user input i created a string which contains the name (e.g. table[2][3][4]) dynamically. Now i want to use this string to access vector variables. But i can not successful...
  9. amanyasin

    DLL and Lib files Path settings in VC++ 2005

    Dear expert, i am using Visual studio 2005. i adjust the dll and lib path in my project but there are some custom dll files in lib directory. Normally it is not loading them, i have to put them in the debug folder. As i am working with the team, it is difficult to write a redistributable code...
  10. amanyasin

    Visual C++ project main file ?

    Dear all, Can you help me regarding Visual C++ project? i have to do some changing in VC++ project. There are lot of source files and header files. How i can set main (master or startup)file? Thanks in advance
  11. amanyasin

    Virus not allow to install any kind of Antivirus

    Dear all, there is virus on my PC, when i install any antivirus it stop its service, message displayed that "service cannot be initialize" or "it is not win32 valid file" i have KESPERSKY live scanner but it not remove the virus. thanks
  12. amanyasin

    Can not open MS office files.Can not install new Antivirus.

    Dear All, virus disabled my "Norton Antivirus". if i open MS office files message display "Please wait while windows configures Norton Antivirus" and it is not opening the file. if i tried to install any other antivirus program. it is not allowed to run its sevice. so dear i can not open any...
  13. amanyasin

    FPDF out put Pdf file show I/O error.

    yes, i also try with no spaces. when Acrobat Reader try to open it, after saveral minute it displays I/O error,request time out.
  14. amanyasin

    connection problem PEAR DB.

    Thanks dear for quiding me, please tell me where i should place "DB.php" file. i am doing all with PHP 5 on my desktop pc.
  15. amanyasin

    FPDF out put Pdf file show I/O error.

    Dear all, i want to create PDF using FPDF. <?php require('pdf/fpdf.php'); $pdf=new FPDF(); $pdf->AddPage(); $pdf->SetFont('Arial','B',16); $pdf->Cell(40,10,'Hello World!'); $pdf->Output(); ?> it runs without any error but when PDF viewer(Acrobate reader) try to open, it shows an I/O error...
  16. amanyasin

    connection problem PEAR DB.

    Dear all, i want to connect Mysql through PEAR DB. i installed PHP5.2.2 with all extensions.when i run fallowing php code, <?php // connect require_once('DB.php'); $db = DB::connect("mysql://root:123@localhost/test"); if (DB::iserror($db)) { die($db->getMessage( )); } // issue the query $sql =...
  17. amanyasin

    where i can find detail on DOS?

    i want to use CHOICE command in DOS Batch file but it is not working at WINDOWS2000 so can u give me any other cammand to display manue by DOS Batch file or please give me web link to find more on DOS COMMANDS ok thanks
  18. amanyasin

    How i can Zip a folder using DOS shell?

    sir i want to zip a folder on DOS shell usig dos commands. i think u understand my question. as we can copy files or folders by using dos commands like we can zip a folder? please help me. thanks
  19. amanyasin

    How to shutdown system from MS-DOS shell?

    now it is working thanks to much
  20. amanyasin

    How to shutdown system from MS-DOS shell?

    thanks is it freeware?

Part and Inventory Search

Back
Top