Software Development Network Logo
  • VS Team System
  • Visual Studio
  • Game Technologies
  • Visual Basic
  • VS Express Editions
  • Visual C#
  • Visual C++
  • .NET Development
  • Windows Vista
  • Windows Live
  • Smart Device
  • Visual J#
  • Visual FoxPro
  • Architecture
  • SQL Server

Software Development Network >> szerencsi's Q&A profile

szerencsi

Member List

Luke_Adams
Kaan Demirtas
gmm567
TychoCaine
icystone
EastShores
kje
Roberto Barrantes
Mickael Provost 44
Douglas Hodges
VDBA
Patricio Fernandes
Viral Shah
yoyo i am new here
Scott Weiss
catlyt
Sand
TayyaSelby
blanza
Ray_The_gnome
Only Title

szerencsi's Q&A profile

  • .NET Development socket.Receive() on blocking socket throwing WSAEWOULDBLOCK exception?

    I'm using a UDP socket for network communication with socket.Blocking == true and SocketOption(ReceiveTimeout) set. After several thousand packet exchanges, socket.Receive() starts throwing WSAEWOULDBLOCK (SocketException.ErrorCode == 10034) and seemingly continues to do so indefinitely about every second or third call to socket.Receive().   Can someone shed some light on what might cause socket.Receive() to throw a WSAEWOULDBLOCK exception on a socket with Blocking == true I wouldn't expect a WSAEWOULDBLOCK exception on a blocking socket. This is happening with .Net 2.0 Beta2 on WindowsXP Pro with service pack 2 (and updates). T ...Show All

  • Visual Basic Does calling a function from a dll created from VB class library spawn a new thread when run or it uses the thread that call it?

    Hi all Just to check, when i created a dll using the VB class library. Does the application spawn a new thread when i call function in the thread or it used the thread that call it   Regards Soon Lee typically. . . no. execution blocks until the function, actually method is the correct term, returns and the execution is in the same thread. that is, unless you asynchinvoke a delegate to the function. ...Show All

  • .NET Development Can 1.1 and 2.0 framework coexist on the same box?

    I'm trying to get my legacy asp.net (1.1/C#) apps to play nice with future 2.0 development. I can get either the 1.1 stuff to run or the 2.0, but not at the same time.  If the 1.1 apps are working the 2.0 work returns errors that tell me that the frameworks are trying to use the same process and that this can't work. If the 2.0 app works then the 1.1 error out. I suspect that this is an IIS configuration issue, but being weak in iis I can't seem to find a solution. I was advised to look at the App Pool for the individual web apps on by server.  The 2.0 apps show as belonging to the 2.0 pool and the 1.1 apps go to the default poo ...Show All

  • Windows Forms New to Programming, Please help! :).

    Greetings all.   I am looking for some advice/suggestions on where to get started in Programming.  I been doing Desktop support/Lan support for a couple of years now and I want to learn how to program and possibly switch my career track to programming.  At this point can anyone please suggest on the best way to go about it   I have  ...Show All

  • Visual C# How to use COM Interface IFEDictionary In c#

    Hi, All, I want to write a .net class wrapping the COM Interface IFEDictionary to get the words in the dictionary of IME(Japanese version) . I found some stuffs on msdn http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnime/html/msime.asp http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnime/html/fedict.asp But I don't known where can I get the dll and the type library. Could anybody give me a demo Thanks a lot! Best regards. ...Show All

  • Visual Studio Express Editions Cannot download .NET Framework 2.0

    Hi, just downloaded the VS express for Basic and C#. When trying to install one of those on my pc, setup routine stops saying: "The following item failed to download: Microsoft .NET Framework 2.0 Setup has stopped because the item listed above could not br downloaded ..." Any help would be appreciated. Thank Max. Have you tried to download it again in the installer If that fails, you can manually download and install the 2.0 Framework from here . ...Show All

  • Visual FoxPro Two questions (about database structure & controls)

    Hello. Today I've stumbled upon two problems I couldn't solve myself. 1. How can I get the structure of a dbf file (in order to make a query for creating the same table in MS SQL) 2. How can I address objects in a form by a cycle. For example    for i=1 to 10       thisform.command(i).caption = str(i)    endif Thanks a lot in advance Thanks very, very much. Both suggestions are perfecct & work ...Show All

  • Smart Device Development Activesync fails to sync after installing vers. 4.0

    Hello to all,  I have upgrade activesync from version 3.7.1 to 4.0 in order to deploy my application in VS2005 beta2 to the device. After doing that, activesync stops to work: although the AS icon show connection (green) when the PDA is in the cradle, is is not possible to get the main screen of activesync ; and, when trying to explore the device, I get the following error window:  " Critical communications services have failed to start . Try resetting the mobile device, and then connect again".   To get worse, I have uninstalled AS 4.0 and went back to version 3.7.1. The problem still is there! In fact, I have tried (wi ...Show All

  • .NET Development A problem of CLR Profiler

    CLR Profiler is a very nice tools. I often use it to detect if there is any memory leak in my program. However, I find sometimes it shows nothing when I click "Show heap now". How can I detect memory leak in such situation Or how can I make it always works normal Thanks! to me the CLR Profiler is not working at all. When i choose profile application and browser to the executable file.It show's up an error like this Unhandled exception has occured in your application. If you click Continue,the application will ignore this error and attempt to continue. If you click Quit, the application will close immediately. ...Show All

  • Windows Forms TaskVision: Danger of BadPractices

    Hi! Since TaskVision doesn't follow any of the Microsoft Patterns (as a matter of fact it doesn't follow any pattern at all, it doesn't even follow the  ADO.NET  API or WindowsForms.NET API) and so many people is downloading it, using it, and basing their work on it.... Is TaskVision creating, with each download, an "anti-pattern programmer" Is TaskVision c ...Show All

  • Visual C++ read struct from file

    this is a beginner programmer questions, at least i think so. CFile::Read( void* lpBuf ,UINT nCount) i can pass a struct (first param) and the length of that struct (second param) and then i will have a populated struct. How can i do the same thing with a managed c++ function The size of an int is 2, size of a double is 8, and a long is 4, how can i adjust my struct that i am reading in to account for this offset You can just use CFile in managed C++, although I would suggest you should use fstreams instead. I would be more inclined to write the different parts of the struct explicitly though, ...Show All

  • Visual C++ msvcr80d.dll not found

    I've created a simple Win32 console application. When I try to debug it, I get the message:  "This application has failed to start because MSVCR80D.dll was not found. Re-installing the application may fix the problem." The Release version runs fine. Any idea as to what the problem could be Thanks, Jonny feuerste that's an excellent point (I'm "bottom posting" this reply so it will appear at the bottom of this thread)  I didn't know what the "use FAT32 work-around" option was as it's not even in the online help.  And the only mention of it seems to be in a Korean blog at: http: ...Show All

  • Visual Studio Team System the request failed with http status 404

    when I tried to open the team explorer I got the following error the request failed with http status 404 I'm also getting this error. Using a clean install (single server) Beta3Refresh in a virtual machine. On the virtual machine I can open and use Team Explorer fine. Creating projects/opening their portal all works smooth. I installed Team explorer on a client WinXP SP2 machine (my actual dev box) and when I open Visual Studio and choose View -- Team Explorer, I get "The request failed with HTTP status 404: /Services/v1.0/ServerStatus.asmx" I never even get the chance to try to specify the TF Server. Any ideas n where I can look to g ...Show All

  • Visual Studio Team System How to view test cases by iteration or area?

    In Test Manager, I can set a test case's properties, such as owner, iteration, area, etc. But why I can not view the test cases group by "iteration" or "area", while it works by "owner" Any walk around to view test cases by "iteration" or "area" Thanks, Leon Hi Leon, Grouping and filtering by these two properties is currently not supported. We are definitely looking into it for next version. Thanks, David Gorena Elizondo [MSFT] VSTS ...Show All

  • Visual C++ Performance problems after porting to VS 2005 from 2003, native C++ code vs STL.

    After porting code from studio 7.1 to 8.0 beta 2, performance (function execution time) decreesed twice. In each two cases code was compiled with max speed optimisation. I tried each useful in my case compiler feature for increasing performance, and nothing helps, 7.1 still x2 faster. Code use basic STL tamplates such as vector, map, iterators, heap functions and nothing else. Please help to understand this fenomenal.     Thanks a lot Maks for taking the time to report the issue. I can see your bug link at http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx feedbackid=f37af40 ...Show All

©2008 Software Development Network