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

Software Development Network >> Daren Yong's Q&A profile

Daren Yong

Member List

KBC
Kris2006
Sephlock
ZacB
afra
Márcio Rosa
arno73
Alexander Khimich
Nagie_Stopy
aberazioon
Cronos12
Gregory Block
texag
Spyros Christodoulou
tod
BarKey
vbBigNelson
Mark Arend
MrDoomMaster
MCP Jesus Vazquez Garcia
Only Title

Daren Yong's Q&A profile

  • Visual C++ Exception handling in MFC applications

    Every so often, our application (built with VC++ 2003) throws a C++ exception, usually derived from std::exception, not CException, that is not handled. This as expected calls abort(). The first question is why that generates no dump file, in either release or debug builds - the docs for _set_abort_behavior state that the default is to produce a Dr. Watson dump. I tried to get around this by calling std::set_terminate, pointing it to this f ...Show All

  • Visual Studio Express Editions Combo Box Help (beginner)

    I added Items to the combo box. How do I define these items Combo Box has a value of 1' = 100' (This is what you see in the drop down list), but I would like to convert this to 1/1200. Can I do this Define {1' = 100'} = {1/1200}. If so, how By the way I would like the 1/1200 to be an Integer(I Think) so it returns a value of .0008333 repeating. Thanks, Mike hi, combobox have a valuemember and display ...Show All

  • Windows Forms Application Setup

    I've created my 1st app in winform (till now without help, but it's another problem  :)  ). App is small (40KB) & works fine.... On my comp only  :(  My buddy wanted to see it & received message "The application failed&nb ...Show All

  • .NET Development Application doesn't exit

    Hi, my .NET-application uses a .NET-Assembly which seems to create some problems: When I click the X-button of the window of my app, the window hides but the programme doesn't end. I tried to get arount that by using this code: private void MyForm_FormClosed(object sender, FormClosedEventArgs e) { Application.Exit(); Thread.CurrentThread.Abort(); } The Assembly mentioned above works asynchronously and has some events, whi ...Show All

  • SQL Server Label Reports

    Are there any facilities in reporting services (2005 or 2000) for doing mailing label reports. We used to use these a lot in MS Access but now we are using Reporting Services for reports and it doesn't seem like there are facilities for labels. I am guessing it could be arranged with some clever lists or tables but not so nice as just picking the type of labels and it does all the formatting for you. Any info would be much appreciated. Martin ...Show All

  • Visual Studio Express Editions Evaluate Code Stored in String

    How can I evaluate / execute code that I have stored in a string I have many textboxes named: tb1, tb2, tb3, etc. I want to run code like this: For i = 1 to 3 temp1 = "Me.tb" & i & ".Value" temp2 = [EVALUATE or EXECUTE](temp1) Next Any suggestions / helps Please also let me know which libraries need to be included. Any help is appreciated. Thank you! Take a look at the MSScript cont ...Show All

  • .NET Development Error while sending email using ASP.NET 2.0 Beta 2 (Visual Studio 2005 Beta 2)

    While trying to send email using <code> SmtpClient obj_SmtpClient = new SmtpClient (); obj_SmtpClient.Host = "" t; obj_SmtpClient.Send(s_from, s_recipients, s_subject, s_body); </code> I get the error message: Failure sending mail. Unable to connect to the remote server An established connection was aborted by the software in your host machine at System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, So ...Show All

  • Visual C++ That "File XXX not found in current source file's directory or in build system paths"

    I am so sick and tired of this bug. I right click on a file that the compiler knows how to find, then select "Open Document XXX" and then I receive "File XXX not found in current source file's directory or in build system paths". Was this ever fixed in 2005 I have been (im)patiently waiting and waiting for a new service pack to address some of the major flaws in VS.NET 2003. Is one ever coming out Was this bug finally fixed ...Show All

  • Visual FoxPro VFP 9.0 SQL worthless under a non client server network?

    Hello everyone; I have posted this problem here and also on UT and no solution yet. I have a small network with a 2003 server, and XP pros. I am running vfp 9 select * from products where status = "S0000" takes apx 10 seconds when run over the network. When running this locally, it takes only a fraction of a second. The product table contains 100,000 records, and the result of the SQL command is just a few hundred rec ...Show All

  • Visual FoxPro [URGENT] help extracting FoxPro DBF Encrypted fields

    Hi everyone. I'm working with a Foxpro DBF database, but I'm not using Visual Foxpro to read the data. I'm doing this from C#.Net. In fact .. I've never really used Foxpro before. My problem is as follows: In C# and Crystal Reports .. a lot of the string fields simply return blank strings (i.e. "") When I view the table in FoxPro, they are fixed-width character fields, and browsing the table shows that they contain a bunch of special A ...Show All

  • Visual FoxPro combobox problem

    I would like my combobox to look like the combobox of ACCESS where I could reduce the size of the first column to 0 so it will only show the second column. Like the zipcode(the 1st column) and the description or place (the 2nd column). I would show the description but internally I am storing only the zipcode but as a user one would only see the description. Hope you could help me again, thanks. Set the control's ColumnWidths prop ...Show All

  • Visual Studio Express Editions Editing a Fixed Length Text File.....

    I searched the forumns and nothing seems to pertain to what I am trying to do. I have done the following easily in VB 6.0 enterprise edition, but am having headaches over trying to convert my code to VB express (BTW the converter Wizard blows up big time trying to convert my code). Anyway.... 1. I have a text file that is fixed length and has records of data that a seperate program accesses (so I can not change the layout or structure and it ...Show All

  • Windows Forms Printing a Form.

    Hi, I have an application that displays a list of data. A user can select an item from the list to open a form to display the details of the item. I want to provide a Print option so that they can get a hard copy of the data. I was thinking of doing this via a Crystal Report or a new Windows Forms Report, rather that using the PrintDocument classes in the framework. The reason being that it seems a lot easier to be able to design what the print ...Show All

  • Visual Studio Team System "Start selected test project without debugger" problem

    Hi, I have a unit test that fails when I click "Start selected test project without debugger". If I run the same tests with "Test manager" or "Start selected test project with debugger" they pass. I've worked out that it is because VS copies different assemblies to the out directory of the test. When it fails it copies my "orders" assembly for some reason, even though it isn't referenced or needed by any of the unit test code when it runs. (T ...Show All

  • .NET Development Deserialization Exception: constructor not found

    Normally the communcation between my client application and the remotely called DLL works fine. The problem occurs in case of an execption in the remotely called DLL, which is thrown back to the client. When the client tries to deserialize this exception the following error arises: The needed constructor for the Deserialisization of the object of the type DBClass.clDBWrapper+clDBExeception is not found (translated from german exception message) ...Show All

©2008 Software Development Network

powered by phorum