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 TouchToneTommy 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. foxjoker

    Problem using DTE to build a solution

    nobody can help me ???
  2. foxjoker

    Problem using DTE to build a solution

    Hi, I'm making a web service that automates some test cases. I need to compile a visual studio solution before running executables and I use this part of code to it Dim DTE As EnvDTE.DTE Try DTE = CType(CreateObject("VisualStudio.DTE.7.1"), EnvDTE.DTE) Catch...
  3. foxjoker

    Using Clearcase through ASP.NET

    Nobody can help me ???
  4. foxjoker

    Using Clearcase through ASP.NET

    Hi, I'm now making a web service which shall be able to find some files in a clearcase view. I added reference of clearcase automation library in my project, that allows me to use cleartool. But when I try to start a view, it throws an exception saying it can't find the directory of the view...
  5. foxjoker

    CFileDialog error with Windows 98

    Thanks, I have to be very careful, because my application is in use in many sites, so I will search for another solution if it exists. Bye
  6. foxjoker

    CFileDialog error with Windows 98

    Well, I develop on a PC with W2000, and it acts quite the same with W98. But I think I have a library problem, because CFileDialog description doesn't match members given by intellisense. The main difference is OPENFILENAME structure, which is m_pOFN in my code, and m_ofn in help.
  7. foxjoker

    CFileDialog error with Windows 98

    Hi all, I use a CFileDialog object in my application, and although it works on perfect with Windows 2000, it does not with windows 98. Here is my code : CFileDialog *browse; browse=new CFileDialog(true,"bin",NULL,OFN_HIDEREADONLY,"Binary Files (*.bin)|*.bin||",NULL)...
  8. foxjoker

    Problem when using visual studio instead of visual C++6.0

    Hi ! I develop an application in C++, and until now, I was using Visual C++ 6.0. I installed Visual studio.net, that contains Visual C++ 7.0 instead and my application compiled with this have many problems (crash at start af application, serial port blocked...). These problems never happened...
  9. foxjoker

    Problem when closing a file...

    OK, I don't have any problem of this kind, because I'm sure there's a handle to this file. But if I use fseek or fsetpos with it, it can't be closed normally. It is not a problem of parameters of these functions, I already checked this .Is there any madatory condition to use fseek or fsetpos...
  10. foxjoker

    Problem when closing a file...

    Hi ! I develop an application that can read data from a file and go back in this file, using fsetpos function. At end of use, I try to close the file, using fclose. But sometimes it generates an error and crashes my application ! I can't explain this, why can't I sometimes close this file ...
  11. foxjoker

    Problem with wheel mouse driver and scrolling

    Hi ! I have developed a multiple windows application, and I had reports about problems with wheel mouse : on some computers, scrolling with wheel was impossible. I noticed that it happened on machines that have microsoft drivers, and not the specific mouse drivers. Is there a way to avoid this...
  12. foxjoker

    Serial port setup : speed>128 K

    Hi ! I made an application which uses serial port. I added possibility to set up port, through visual function CommConfigDialog. In the dialog box that is open, baudrate can reach 921K, but I can't configure this speed : it seems not to be possible using function SetCommState, because constants...
  13. foxjoker

    Port reset

    Hi Pete ! I mean the serial port, when talking about the port. And 'brutally reset' means that it hasn't been done from the computer, but from the device that is connected to.
  14. foxjoker

    Port reset

    Hi ! I have a problem with my application : when the port is brutally reset, it doesn't work anymore, even if I empty the buffers. How can I do to reset the port without closing it ? Thanks, FoxJoker
  15. foxjoker

    Threads and message dispatching

    Well, I send WM_PAINT and WM_VSCROLL messages... The error is that a pointer, used by the OnWndMsg function, seems to be empty ( the memory could not be read ). Is it enough clear ? Maybe should I note the exact words.
  16. foxjoker

    Serial port

    Hi Jimmy ! You can use the function CreateFile to open the port : [code] hComm=CreateFile(ComName,dwDesiredAccess,0,NULL,OPEN_EXISTING,FILE_FLAG_OVERLAPPED,NULL); [\code] This is an example to set up the port, but you should see the functions definitions : [code] cc.dcb.BaudRate=CBR_115200...
  17. foxjoker

    Threads and message dispatching

    Hi ! I made an application that uses 2 threads, getting data from the port and decoding them before displaying them. But it crashes after a time, and the debugger indicates that the error occurs in CWnd::OnWndMsg. When I reduce the number of messages sent by my threads, the error happens later...
  18. foxjoker

    Serial port communication and MFC standard class

    Hi ! I just finished an application that allows to get data from the serial port. I used the standard createfile, readfile and writefile functions. But to treat data, I run a loop where I call the function that reads data from the port. And it caused an error if I don't set the focus on the...
  19. foxjoker

    Display refreshing

    Hey, it's me again !<br><br>I need help about the way I do my new application. I created a menu option that opens two windows with some text in. But when another window come above, the text disappears. I don't know how to refresh the screen. A detail, I don't derive a class to create the...
  20. foxjoker

    Menus in VC++

    Hi !<br><br>I used the AppWizard to generate a new application. Now I try to insert a new option in the menu but when it executes the option is grayed. Yet I checked that I didn't make the option grayed.<br><br>Where is the problem ?

Part and Inventory Search

Back
Top