Skip to content

IT & Infrastructure

General IT Discussions

This category can be followed from the open social web via the handle it-infrastructure@forum.codeproject.com

6.1k Topics 18.2k Posts
  • TAPI - getting a handle to an existing call

    question
    5
    0 Votes
    5 Posts
    0 Views
    M
    A lot depends on how your hardware is set-up, is the modem and phone plugged into the same extension? TAPI needs to have opened the device (modem) to be able to see the calls on the line. Your application needs to open the line device using lineOpen and monitor the events and keep a track of the active HCALL handles. You should then be able to do the data transfer using lineGetID to get the COM port. Actually, thinking about it if you have the device opened when the call comes in then you might be able to use lineGetID on the device rather than the call. http:\\www.julmar.com has some TAPI utilities for monitoring lines, you might want to see if these can see the call handle. Also the TAPI Browser on the platform SDK is usefully for seeing what handles are available to you. Michael :-)
  • Helping a beginner.

    help question learning
    4
    0 Votes
    4 Posts
    0 Views
    J
    I in no way benefit from my constant plugs of the Free Library on InformIT.com, but again, I'd recommend signing up there and taking a boo around the Free Library in the programming sections. There's a lot to be learned from the Visual C++ books. - Jason Do you have a Pulse? SonorkID: 100.611 Jason
  • Need help from web developers

    html xml c++ database sysadmin
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • flowchart and Assembly code

    performance help
    2
    0 Votes
    2 Posts
    0 Views
    J
    How 'bout you show us what you've already done, explain what problems you're having, and then ask specific questions? Sounds like a challenging lab/homework assignment. We did something similar in my mcontrollers class - a digital voltmeter. Oh, and though you might find some HC11 hobbyists and/or experts here, I'm sure there are many other sites that can offer you more directed help. This is a Windows programming site. :) Just Google for 68HC11 and you will be inundated with information. Jon Sagara What about :bob:? Sonork ID: 100.9999 jonsagara
  • connecting styff to computer

    question
    4
    0 Votes
    4 Posts
    0 Views
    R
    If you are very certain of what you're doing, and very careful doing it, sure! I do all the time, but there are some rules of thumb to follow. Number one is to make sure the power is off on the device you're connecting. Another is to make absolutely sure that you're making an appropriate connection - you'd be amazed at what some people try to do to their PCs. And I'd strongly advise that you resist the urge to add/remove anything inside the case with power applied. The contacts are just too close together to do so safely. On newer systems even shutting off the power isn't completely safe - it's far safer to pull the plug. In many cases, most in fact, the OS will not detect the change until you reboot. Hot-swapping a mouse or a keyboard (the basic kind, not the new fancy ones) will generally do no harm. Adding or removing a modem or router is also harmless, though I wouldn't expect either to work properly without rebooting.
  • If you have something negative about STL, I'd like to hear it ..

    c++
    3
    0 Votes
    3 Posts
    0 Views
    L
    STL was not designed for inheritance. This may have changed, but last I checked destructors weren't virtual, for example, and some key information in some classes, like string, is private, making it difficult to implement certain behaviors in the inherited classes. Also, while generally fast, STL is missing some common place protections, or at least asserts in debug mode. The STL string class is completely lame. The collections classes, however, are generally nice, even if a little obscure. (Having a "common" interface may sound nice in theory but sometimes it's just plain annoying and cumbersome.) Personally, I don't like the STL interface. However I work with a guy who really likes it, so I suppose it's a matter of personal taste. (Even my co-worker has conceded, however, that the documentation of STL leaves much to be desired and many implementations, especially the Dinkumware VC6 version, are very obscure and difficult to debug.)
  • Detect Winsock2?

    sysadmin windows-admin question
    6
    0 Votes
    6 Posts
    0 Views
    C
    Yep, here's what we do at the shop to test for 2.2: iErr = WSAStartup(wVersionRequested, &wsaData); if (!iErr) { // Confirm that the WinSock DLL supports 2.2. // Note that if the DLL supports versions greater // than 2.2 in addition to 2.2, it will still return // 2.2 in wVersion since that is the version we // requested. if ( LOBYTE( wsaData.wVersion ) != 2 || HIBYTE( wsaData.wVersion ) != 2 ) { BarkAndWhine(_T("CIdsSocket::WinsockInit() - Could not find a usable WinSock DLL for version %d.%d"), byVersionHigh, byVersionLow); } else { // The WinSock DLL is acceptable. Proceed. } } Chistopher Duncan Author - The Career Programmer: Guerilla Tactics for an Imperfect World (Apress)
  • January 2002 MSDN

    csharp visual-studio sales question
    2
    0 Votes
    2 Posts
    0 Views
    J
    This has been mentioned a few times before, but the deal is that it won't integrate with VS6, but you should be able to install it and use it by running the program separately. Jeremy Davis wrote: Is this a Micro$oft marketing ploy Of course it is, they want all developers to use the latest version of visual studio. But can you blame them? If you've released anything commercially how often does your tech support staff say, "If you'll upgrade to the latest version that problem should be taken care of." James Sonork ID: 100.11138 - Hasaki "My words but a whisper -- your deafness a SHOUT. I may make you feel but I can't make you think." - Thick as a Brick, Jethro Tull 1972
  • A free compiler for you

    visual-studio debugging performance learning
    3
    0 Votes
    3 Posts
    0 Views
    J
    A discussion group called "General discussion" is strictly C#? This is new. Topics here are: Icons CGI+Perl problems Directx9 release date Maybe you do not like C, or free compilers, or both. OK. Then do not use it.
  • Saving a WebCast to my hard disk

    question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • CGI/PERL Email

    perl sysadmin help question
    7
    0 Votes
    7 Posts
    0 Views
    K
    After I had sent the last message, that's exactly what I did and it worked. I decided to imitate the program that worked. I should have done that in the first place. :rolleyes: Thanks for your help. Why not throw away a dime? I throw away ten pennies all the time.
  • 0 Votes
    5 Posts
    0 Views
    L
    I'll try bumping this in case anyone knows *sigh*
  • need to extract data from exchange 5.5 priv.edb

    sysadmin hosting tools help question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Icons

    question
    2
    0 Votes
    2 Posts
    0 Views
    T
    http://iconmania.8m.com http://www.iconolog.net
  • 0 Votes
    2 Posts
    0 Views
    M
    Maybe this article helps? PS. This kind of question would be better in "Visual C++" forum, even if you are using Borland's compiler.
  • C and C++

    c++ visual-studio learning
    2
    0 Votes
    2 Posts
    0 Views
    L
    Sorry, I forgot to mention which C++ example was. It is the ShowWindowTree example in this same code project.
  • DirectX 9 release date?

    csharp graphics game-dev question announcement
    4
    0 Votes
    4 Posts
    0 Views
    J
    I don't know, but I'm waiting for it anxiously too! :jig: James Sonork ID: 100.11138 - Hasaki "Not be to confused with 'The VD Project'. Which would be a very bad pr0n flick. :-D" - Michael P Butler Jan. 18, 2002
  • GPL and LGPL in commercial software?

    question tutorial announcement
    2
    0 Votes
    2 Posts
    0 Views
    M
    With LGPL, you can link dynamically with the code (the LGPL licenced part must be a DLL), and you can use the headers, including deriving classes, from your commercial code without having to release your code under a Free Software licence. GPL code can't be linked with (statically or dynamically) or included to a non-free program. However, you could isolate the GPL part as an independent process, and use its functions from the commercial application through COM or some other communication mechanism.
  • Flowchart/Code documenter program?

    tutorial data-structures help question
    2
    0 Votes
    2 Posts
    0 Views
    N
    I may be wrong but I thought you could use Visio.
  • Cabbing and Signing Components

    cryptography c++ com sysadmin linux
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied