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 Mike Lewis 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. luvcloud

    Problem updating file after creating Shadow folder

    I've just created Shadow folder in VSS. Then I did some modifications to a file and checked in the file. I then get a message prompt saying 'Invalid Dos path H:\_CRM\ShadowVSS'. I checked the srcsafe.ini file and the Shadow parameter is pointing to the same path. I've shared out the Shadow...
  2. luvcloud

    scrollbar problem

    is it possible to programmatically scroll down a scroll bar? I have rich text box which will display all chat messages. The problem is everytime a new text is appended onto the rich text box, i have to manually scroll down the box to view what was written. How do i make the text box always...
  3. luvcloud

    need beta testers

    Hi all!! I've just completed writing a networking Draughts (Checkers) using C# for my college project. I need help testing it out (beta testing). Anyone interested, please visit this website to download it. http://www.geocities.com/aiyuen9 I have also included a questionnaire in the setup...
  4. luvcloud

    Beta testers

    Hi all!! I've just completed writing a networking Draughts (Checkers) using C# for my college project. I need help testing it out (beta testing). Anyone interested, please visit this website to download it. http://www.geocities.com/aiyuen9 I have also included a questionnaire in the setup...
  5. luvcloud

    delegates and events

    is there any advantages in using delegates? I mean, i have a class, lets say classA which handles any events invoked in classB. i could simply have the method in classB, call the method in classA, which is the same as firing the event in classB, which will invoke the method in classA. could...
  6. luvcloud

    Thread pool

    i was wondering is there similar classes in the JDK for thread pooling? I've read that C# (or rather the .Net framework) has a class ThreadPool. Is there similar ones in Java?
  7. luvcloud

    problem playing audio files

    i've tried the code below to play wav files and it works fine. But when i try to play midi files and mp3, it doesn't play at all. Is there some way to play midi files or mp3 or is it not possible. Could i be using the wrong dll file? [sysimport(dll="winmm.dll")] public static extern...
  8. luvcloud

    Networking problem - client/server

    I have a method (OnConnected()) in a class - ServiceClient which will another method (SendToClient()) in another class PlayerMsgHandler. The code for OnConnected() in ServiceClient is as below: public void OnConnected(object sender, EventArgs e) { PlayerMsgHandler myplayer =...
  9. luvcloud

    minimize form programatically

    i have created a shaped form, and as a result i do not have the standard maximize/minimize/close buttons that usually appear on the title bar. i've thought of putting buttons to create that function. But how do i minimize or maximize the form from the code itself? is that possible?
  10. luvcloud

    creating cursor

    i was wondering how do i use a 256 color cursor in my application?
  11. luvcloud

    TCPclient/Socket class

    i read that there are several ways to create sockets, through TcpClient/TcpListener, Socket and UdpClient classes. is there any difference between TcpClient/TcpListener and the Socket class? I mean, how do i know which one to use?
  12. luvcloud

    threading question

    Actually what i don't understand is why C++ is said to have no support for threads, when there are a method to create thread which is the _beginthread. i'm trying to understand the way C++ handles multithreading as i need to compare it with C# for my college research project. I understand that...
  13. luvcloud

    threading question

    is there a difference between _beginthread, and the Worker/UI Thread provided in MFC?
  14. luvcloud

    threading question

    i read that C++ do not really have support for thread. Instead the API of the operating system is used. does this code below making an Win32 API call? the header imports process.h. _beginthread(AcceptProc,0,&sockListen);
  15. luvcloud

    Multithreading- synchronization

    Can someone pls explain what this paragraph means : " What Java is lacking (and what C# has) is the ability to attempt to enter a synchronized code segment without blocking on the acquisition of the lock. C#'s Monitor class not only contains the Enter method, which blocks until it can be...
  16. luvcloud

    multithreading

    i read that the synchronization in Java utilizes a 'lock'..this is similar to the use of 'lock' keyword and also the monitor class in C# rite? anyone can explain this more in detail, like whether there is a difference?
  17. luvcloud

    Event hanfling using MFC

    can u explain how events are handled without MFC? is it through function pointers? MFC is used to create Windows applications rite? is it possible to create Windows app without using MFC?
  18. luvcloud

    Event handling model

    could someone pls explain to me the event handling model in Java? i know the syntax of it, but how does it actually works?
  19. luvcloud

    Event hanfling using MFC

    can anyone tell me whether this paragraph is correct? if not, could u all pls modify it? -There is no event handling methods in C++ is applications developed are mostly console-based. In order to create Windows applications, MFC (Microsoft Foundation Library) in Visual C++ is employed. Event...
  20. luvcloud

    networking question

    anyone know any articles or websites that have explain about how to create networking app or handle sockets in C++? or can anyone explain how it is done? just the basic...for example creating a client/server app that can handle multiple connections and acts like a chat program or something. i'm...

Part and Inventory Search

Back
Top