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 bkrike 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: redoctober
  • Content: Threads
  • Order by date
  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

    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...
  3. 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 ...
  4. 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...
  5. 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.
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. 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.
  12. redoctober

    Parallel Port on Mac?!!!

    Hi, I'm very new to Mac programming and Mac's in general so i appriciate any help. I need to send a signal to a device (not a printer) from Mac through a parallel port. The Mac i'm working on is a G4 and has only USB ports. I've looked on the net some sort of a converters but none of them...
  13. redoctober

    Multiple Dialogs Problem

    Hi guys, i have a SDI project and at when i click a menu item i want 2 dialogs to appear. Everythings works fine except 1 little detail. If i create my dialogs m_Dlg->Create(IDD_DIALOG1); (1) m_DlgT->Create(IDD_DIALOG2); (2) and then make then visible m_Dlg->ShowWindow(SW_SHOW)...
  14. redoctober

    TWO DIALOGS AT ONCE

    Hi there, I've got a ? I've got a single document application and in there i'm creating two modeless dialog boxes from two differnt classes. They get created and work fine with exception of one feature. If i create 1st dialog then 2nd m_Dlg->Create(IDD_DIALOG1); m_DlgT->Create(IDD_DIALOG2)...
  15. redoctober

    OpenGL question

    Hi guys, Maybe it's not exactly the right forum for this question but again maybe someone stumbled upon something similar before. I'm working with opengl in project with MFC support. I use glut for window creation and handling for opengl output. Now, my program runs well in execution mode...
  16. redoctober

    Preemptive execution

    Hi, I'm writing a little program which does the following: When i press the button it goes in my Doc class and performs some tasks which sometimes may take a few minutes. What i want to achieve is to be able to report the status of execution in the window. Every once in a while i'm sending a...
  17. redoctober

    Tread Problem

    Hi there, I'm having a problem with the thread here. Actually two of them. 1) I derived my class from CWinThread and i instantiate it in the Doc class constructor. MyThread class has Socket variable and two archives. I initialize them when i connect to server... When server sends a message to my...
  18. redoctober

    Modeless Dialog, connecting it with the rest of the program

    Hi, I've got question. I have a dialog box which i create as modeless using Create() function. And i have to change some parameters in the Doc object as soon as i click on button on the dialog, but i can find a way to get a hadle to the Doc object. Now i'm curious is there any graceful way to...

Part and Inventory Search

Back
Top