thanks for your help, but none of them worked :(
kfaday
Posts
-
W2K3: Opening a chm file from a network location, creating .reg files -
W2K3: Opening a chm file from a network location, creating .reg filesWould you mind telling me how to do that? Thanks
-
How to make a program be accepted by spyware softwareWe 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?
-
Need help for creating a testing plan documentI'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!
-
W2K3: Opening a chm file from a network location, creating .reg filesI 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 -
Testing Question - Automatic testing tools, regression testingThanks 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 ?
-
Testing Question - Automatic testing tools, regression testingHi 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
-
B+ treesanyone please!!!
-
B+ treesHi 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!!
-
File indexing questionHi 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!
-
ansi c: gets dangerousthanks, i used fgets
-
ansi c: gets dangerousHi, 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!
-
Allowing a Template Function to access a private variables in a class.maybe calling public functions in that class to modify those private atributes...
-
Non-printable charactersthanks!! that function solved it!
-
Non-printable charactersHello, 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!
-
dumb command line questionHi, 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!
-
sizeof(class) questionthanks~!
-
Operator for casting a class to void*what do you mean with ??? thanks!
-
sizeof(class) questionHi, 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!
-
Operator for casting a class to void*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!!