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 strongm 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. redoctober

    Remote Desktop connection problem

    Hi, i have a WinXp Pro SP3 and i'm trying to get the RD working on it. I've done it before and it was working fine on that machine but lately i can't connect to it anymore. When i try to connect to this machine i don't even get any error messages. When i press "Connect" button it goes gray for a...
  2. redoctober

    C# Interop Inheritance question

    Well, that's sort of what i ended up doing for the time being, which seemed like a complete hack. And i thought there's got to be a proper way of doing this. But perhaps there isn't... Thanks for the reply.
  3. redoctober

    C# Interop Inheritance question

    Hi all, I have a question about inheritance when you get to deal with Interop. I'm building a library in C# (VS2003) which i later want to use in VB6 project. Generally i got it all working except for one thing that puzzles me. I have some basic inheritance in my C# classes. Something like this...
  4. redoctober

    using C# dll in VB6

    Thanks a bunch. I used your suggestion and everything works now.
  5. redoctober

    using C# dll in VB6

    Hi, i'm planing to write a class library in C# and then use it in VB6 aplication. So i wrote a little test program. Here's the C# just in case: using System; namespace MyClassLibrary { public interface MyStab { void Init(); string Append(string s); } public class MyClass ...
  6. redoctober

    How to specify cpp files

    Hi, I have a project that is being developed for different platforms. So i have a common interface (.h files) but the implementation (.cpp files) varies for each platrom and those files are kept in different directories. How can i specify in MSVC++ 2003 project to take proper cpp files and...
  7. redoctober

    System time in VB

    Quick question, is it possible to get a system time in VB with precesion to a millisecond? Time and Now give you time only to a second but i need better resolution. Thanks.
  8. redoctober

    Programming for multiple networks

    Hello, I'm faced with a little problem here. I have more than one network adapter installed on my computer and i want to create a CSocket and bind it to a certain adapter. While it's trivial to do it manually (you just specify an IP to Create procedure) i would want to have a more general...
  9. redoctober

    ATI Enthusiasts

    I'm getting the same impression. I was just hoping that there are some ATI employes here who hate thier job and cannot miss the oportunity to bash thier company:-)
  10. redoctober

    ATI Enthusiasts

    Well it's true that resolutions not supported by the monitor are hidden by default, but you can disable that. If you go to Control Panel->Display->Settings->Advanced->Monitor and uncheck option "hide modes that this monitor cannot support" click Ok. And you should be able to see all...
  11. redoctober

    ATI Enthusiasts

    Can you name the cards that don't suport it? I checked couple of GeForces they all have it.
  12. redoctober

    ATI Enthusiasts

    Hello to all ATI enthusiasts! I have a question for you. I would really appresiate if someone told me why ATI v-cards do not provide 1280x960 resolution? I mean, wouldn't be logical to have it? After all most of the monitors are 4x3. What was the motivation for the ATI engineers to leave this...
  13. redoctober

    Adding CSocket functionality

    When you add Windows sockets component to the project it adds the following code to the BOOL CTestApp::InitInstance() if (!AfxSocketInit()) { AfxMessageBox(CG_IDS_SOCKETS_INIT_FAILED); return FALSE; } I would assume all necessary initialization with dll are done there. But it's only a...
  14. redoctober

    Adding CSocket functionality

    Sorry, guys. Disregard the question. Stupid me forgot one more line of code. It should look like this: 1. m_CSoc = new CClientSocket(); 2. m_Csoc->Create(); 3. m_CSoc->Connect(myip, myport); 4. file = new CSocketFile(m_CSoc); 5. m_CSoc->arIn = new CArchive(file,CArchive::load)...
  15. redoctober

    Adding CSocket functionality

    Hi there, I have to add network functionaly to the existing project which was originally created without Windows Sockets support. I've programmed networking before, but it seems that that some settings or something being turned on when you create project with win socket support. I'm having hard...
  16. redoctober

    Running program as a service

    Thanks guys. dentarthurdent: I tried to do what you sugested... But first, i don't have runservices key in the regestry, i only have "run", "runonce" and "runonceex". When i put the string into "run" the program only starts when i login. The same effect...
  17. redoctober

    Running program as a service

    I've wrote a little program for win2k (a simple network server) and i need it to be run on background (like a service i guess). Basicaly i need it to start running when computer is turned on even if no one logs in. Is it possible to do just but tweaking windows? And if yes, how? Or i have to...
  18. redoctober

    Vertical Synchronization

    Hi guys, i have a general question about V-synch. If i understand correctly, v-synch means that if i program something and i say draw something on the screen, the system will wait for the monitor to start new refreshing cycle of the screen and only then will proceed with dumping the video buffer...
  19. redoctober

    Change OS language

    Hi have a mac here with german OS 9.0 on it. i was wondering is there an easy way to change OS language? Can i Install english update for OS on top of German os? Thanks.
  20. redoctober

    Parallel Port on Mac?!!!

    I need my program to send signals to MRI and as far as i know MRI doesn't have any other ports but parallel (at least for this operation).

Part and Inventory Search

Back
Top