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 Chriss Miller 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: *

  • Users: afe
  • Order by date
  1. afe

    VxD: how to get started?

    Maybe it's the wrong place to ask such a question, but please, tell me how to write a simple VxD driver to perform hooking keyboard input. Is DDK included into VC++ suite? What do I need for writing such a driver?
  2. afe

    about changing the appearance of desktop

    Does anyone know how to make titles under the shortcuts on the desktop transparent?
  3. afe

    about JComponent and his children

    I tried to create a custom component extending JComponent. But I found out that when I override paint(), update() and so on my component is still invisible. What is the matter? The main question is that even JButton doesn't paint itself properly in appletviewer! I tried to find the answer in...
  4. afe

    CIPAddressCtrl

    When I am trying to call CIPAddressCtrl's methods GetAddress, IsBlank and so on, my compiler doesn't see them, whilst these functions are present in MSDN, and it's OK with CIPAddressCtrl. How to get these functions working?
  5. afe

    javadoc problems

    I've tried a lot of times to get documentation with the aid of javadoc, but it doesn't work. Please, give some examples of using javadoc.
  6. afe

    HELP! need links on...

    I need any links related to the cryptoanalysys based on hardware faults (something like Differential Fault/Failure Aanalysys). If you have any information --- please, mail me!!!
  7. afe

    Is my PublicKey common for communications with all my peers?

    the answer to this qweston lies in Mathematics. Try to find through the Web book that describe mathematical background of public-key encryption, you'll probably find the mechanism there. Talking shortly, there aren't efficient algorythms to find private key out of the message and public key. It...
  8. afe

    Is there a c/c++ function that determines if a given number is a prime

    All previous ansvers are based on Euklidian Seed algorithm. It has a drawback of low speed. The last answer from JohnFill would if you change the condition in for-loop from IntValue/2 to sqrt(IntValue) -- you'll get more efficient code with the same result. If you want to check for primality...
  9. afe

    Arguments in function

    Excuse me, but the best approach would be defining two OVERLOADED functions: int Procura(CString s) { //... } int Procura(int i) { //... }
  10. afe

    Simple programming question

    Hey, why don't you just add X<>Y or X\=Y (in SWI) in your brother-sister-somethingelse rule to check it?
  11. afe

    menu help

    Try this: choice(c,Name):- write('The brother(s) of this person is/are '),!, brother(X,Name), write(X),nl, fail. choice(_,_). %to force returning 'Yes' fail&cut(!) are pretty useful in a such cases!
  12. afe

    Trying to find an element in a variable list.

    It is useful to represent a sentence as a list of words. It's a nasty but efficient way. There are existing functions to implement this. Now I have a course of &quot;Natural Language Processing&quot; and we use program read_sent from (Clocksin, Mellish 1987), it is also available in Clive...

Part and Inventory Search

Back
Top