Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
K

kfaday

@kfaday
About
Posts
155
Topics
69
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • W2K3: Opening a chm file from a network location, creating .reg files
    K kfaday

    thanks for your help, but none of them worked :(

    System Admin tutorial com sysadmin security question

  • W2K3: Opening a chm file from a network location, creating .reg files
    K kfaday

    Would you mind telling me how to do that? Thanks

    System Admin tutorial com sysadmin security question

  • How to make a program be accepted by spyware software
    K kfaday

    We are developing a windows program that installs via TCP/IP a client (as a service) on other computers. Spyware software prevents that remote type of installation. Is there a general spyware database to submit my program for testing that it is secure, so i don't have to oblige customers to turn of temporarily their anti spyware solutions? or do i have to send the program to all companies that develop spyware programs? Anybody has stumbled upon this scenario?

    IT & Infrastructure database testing beta-testing tutorial question

  • Need help for creating a testing plan document
    K kfaday

    I've been testing an application for some months now, and i have to write a document so that people can read it and test the application. I know what i have to write about, but are there any models for such documents? I never wrote anything like that, i'd like to know the formal side of testing plan docs. Has anybody done anything like that? Thank you very much!

    IT & Infrastructure testing beta-testing help question

  • W2K3: Opening a chm file from a network location, creating .reg files
    K kfaday

    I want to open a chm file from a network location. Due to a recent ms security path, you can't do it. I was reading the following microsoft article which explains the workaround. http://support.microsoft.com/kb/896054/ i want to use the solution listed in "Example 1: How to use UrlAllowList to enable specific URLs" The reg file i created is: REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions] "UrlAllowList"="\\\\beyond15\\GASPNet 7\\;file://\\\\beyond15\\GASPNet 7" It works if i access the folder via \\beyond15\GASPNet 7\ and then execute the chm, but if i create a network drive (i.e. z:\) with that folder, i can open the file but i get the message action cancelled. any ideas? Thank you very much -- modified at 15:30 Wednesday 21st December, 2005

    System Admin tutorial com sysadmin security question

  • Testing Question - Automatic testing tools, regression testing
    K kfaday

    Thanks for your answer!!.. i don't know about budget. I'll submit that suggestions to my superiors for evaluation. what do you mean with: What are your requirements ?

    Collaboration / Beta Testing c++ testing tools question delphi

  • Testing Question - Automatic testing tools, regression testing
    K kfaday

    Hi I am a tester in a development team, we are working on a project designed with Delphi(the main part) and part in c and c++ (with MFC), that uses MSSQL (SQL 2000 or MSDE). I was instructed to search for testing automation options, packages, tools, applications, etc. Our most critical, critical issue is regression testing. What do you recommend? Thanks! Edit/Delete Message

    Collaboration / Beta Testing c++ testing tools question delphi

  • B+ trees
    K kfaday

    anyone please!!!

    C / C++ / MFC c++ data-structures

  • B+ trees
    K kfaday

    Hi I was wondering, does anybody know where i can find a c++ implementation of a B+ tree data structure. I've been looking through the web without success. thank you very much!!

    C / C++ / MFC c++ data-structures

  • File indexing question
    K kfaday

    Hi I’m going to develop an application for university and I would really appreciate some advice. I’m creating a file managing system, like tar, that creates a ‘file’ which manages a collection of files. You can add files to the ‘file’, create directories (a directory would be a file with pointers to inodes), delete them, etc. It’s like creating a small file system. I have to develop it in Linux, in C++, it’ll be an Object Oriented Program. I was thinking of dividing the ‘file’ in three parts, the main or first section, the ‘inodes’ section and the files section. The inodes are small pieces of data that contains information of the files inside the ‘file’, its name, where it starts and the size in bytes among other things. I was thinking that all of them could have the same size, but that’s not good, as space will be wasted for file names. Then, for indexing the files inside the big ‘file’, I was thinking in giving them numbers, and searching sequentially, but I need something more efficient. I heard that the best solution to that are trees. Which is the easier solution to implement, one which is also fast? Any other ideas of how could I index files inside the big ‘files’? Any links or recommended books on the subject? I’m quite new in this area of programming and I didn’t find anything useful on the net. Thank you very much for your time!

    C / C++ / MFC question c++ database linux algorithms

  • ansi c: gets dangerous
    K kfaday

    thanks, i used fgets

    C / C++ / MFC tutorial question

  • ansi c: gets dangerous
    K kfaday

    Hi, i'm doing an ansi c program, compiling with gcc. I get a warning that the gets function is dangerous. Everything works fine, but i don't want to get that warning.

    char *Comando=0;
    Comando=(char*)malloc(150*sizeof(char));

    gets(Comando);

    I can't (or don't know how to) use scanf as if i type a string with spaces scanf only saves the characters until the first space. which function could i use apart from gets (and it must be ansi c )? thanks!

    C / C++ / MFC tutorial question

  • Allowing a Template Function to access a private variables in a class.
    K kfaday

    maybe calling public functions in that class to modify those private atributes...

    C / C++ / MFC

  • Non-printable characters
    K kfaday

    thanks!! that function solved it!

    C / C++ / MFC question

  • Non-printable characters
    K kfaday

    Hello, i'm doing a simple ansi c console application. i'm reading a file Now, i have to print its characters, and if i find a non-printable character i'd like to write a . or , or whatever. i've got this code that prints everything:

    while (Cantidad>0)
    {
    	c=getc(Arch);
    	if (c!=EOF)
    		printf("%c",c);
    	else
    	{
    		printf("eof.\\n");
    		return 1;
    	}
    	Cantidad--;
    }	
    

    how do i check if c is a non-printable character? thanks!

    C / C++ / MFC question

  • dumb command line question
    K kfaday

    Hi, i've got the following line in my app: printf("Press Enter to continue\n"); ... clrscr(); i want to display the message until the user presses enter and then clear the screen. what command should i use for that? I need only ANSI C commands i remember that in pascal you can use readln; thanks!

    C / C++ / MFC question delphi

  • sizeof(class) question
    K kfaday

    thanks~!

    C / C++ / MFC question help

  • Operator for casting a class to void*
    K kfaday

    what do you mean with ??? thanks!

    C / C++ / MFC tutorial question

  • sizeof(class) question
    K kfaday

    Hi, i've got this class template class pointer { private: T *p; }; and i get 4 if i do sizeof(pointer). if i add a static member data, it doesn;t count. why is it that? is it because there's only one copy of that atribute for all the instances of the class? then, if i add a virtual function (or 2, or 3), i get 8 if i do sizeof(pointer). why is that? thanks for your help!

    C / C++ / MFC question help

  • Operator for casting a class to void*
    K kfaday

    Hi, i would like to know hot to implement an operator to cast a class to void*. I thought of overloading operator (), but i don't know how to proceed (as i didn't find anything on the web). Any ideas? thanks!!

    C / C++ / MFC tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups