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

Software Development Network >> dummy#1's Q&A profile

dummy#1

Member List

hlee
Stephen A. Weatherford
Craig Richardson
Filip_CEi
twang
Murdoch
KenJr
Dave Cowell
fishinsea
Allen L
Ean L. Towne
Squirrel
Jackson Donadel
Bradrover
behnamkh
Buruburu
Sir_K
Jay Legue
Kandikan
draxx
Only Title

dummy#1's Q&A profile

  • Visual Studio 2008 (Pre-release) date picker not available, someone already working on it?

    Okay, so I'll be the first to whine about this: it's been said in some video's and a few blog posts that there will not be a datetimepicker for avalon provided by microsoft. Is that true If so, is someone working on this / planning on going to work on it I'm probably going to need this pretty soon, and I think it's a bit too involved to just do myself. Regards Ruurd, Thank you for raising this question. DatePicker will not be in v1 but will be very likely in later release. We are looking into providing DatePicker sample for use in interim. Regards, Pung Xu ...Show All

  • Visual C++ Visual C ++ Runtime Library, Abnormal Program Termination

    I have had some issues with this for some time until I managed to locate a few examples in the knowledge base. My problem was that on boot up I received the Abnormal Program Termination with a program link attached. The string ended in {setup\hpzrcv01.exe I remembered viewing a comment from one individual who mentioned to uninstall any recently installed software. Well in my case it was a Hewlett Packard Printer.I had deleted the printer, so I thought but had not gone to the trouble to uninstall it properly, soooooo!!!! by some unknown reason it was trying to complete the setup on boot up, as indicated by the tail of the string. I followed t ...Show All

  • Visual C++ How to pad a structure size to 32-bit?

    My game book using C++/win32/dx suggests to either pad my structures to 32-bit manually, or by using a macro (easy way). Since each structure would be padded to 32-bit, this would definitely increase speed. I looked around the web and the docs, but I don't see this macro he briefly talked about. Does anyone know what it is Take a look at the #pragma pack directive described at http://msdn2.microsoft.com/en-us/library/2e70t5y1.aspx Also, __declspec(align(#)) at http://msdn2.microsoft.com/en-us/library/83ythb65.aspx might be helpful. Thanks, Ayman Shoukry VC++ Team ...Show All

  • Visual C++ vector container with user-defined class problem

     Hi all: I want to use the STL vector to store an array of objects which class is user-defined. LMVector is the user defined class and here it's the LMVector.h file. class LMVector { private:     .... public:     .... };   In another class LMRectangle, there is a field needed to store an array of LMVector. Here is the header file for LMRectangle class LMRectangle{ public:     .... private:     std::vector<LMVector> _vertexList;     .... }   This doesn't work and it will complain that LMVector is a unde ...Show All

  • .NET Development ASP.NET Adding AssemblyInfo.cs -- Application Versioning

    Have difficulties adding AssemblyInfo.cs file to web project in VS 2005. I don't see any option to add one. I have to manually create one ... am I missing something.... In past I control Version and Assembly information (AssemblyTitle, Desc, so forth) within AssemblyInfo.cs. Now after adding AssemblyInfo.cs file manually I am unable to retrive those values within the application. Hi! Thanks for asking! I'm a member of the ASP.NET team, and was just popping over here to see what was going on. The best place to ask ASP.NET questions is over on the ASP.NET forums at http://www.asp.net/welcome.aspx t ...Show All

  • Visual C++ ATL COM Singleton

    Hello everyone, I am having a problem creating a 'In-proc' , "Singleton" ActiveX Control using ATL 3.0. I have tried DECLARE_CLASSFACTORY_SINGLETON macro, but this doesn't work across the processes. I want only one instance of the ActiveX Component running across all process and even across the network. If any other process tries to instantiate the Component second time onwards should receive NULL . Please, Let me know if there is any way we can do it... Thanking you in advance... -Bye. If the scope is in-proc I do not see how it can determine if it is the only instance over more pr ...Show All

  • Visual C# Threading in C#

    Hello Everyone, I have a tab application, which initially I made single threaded....I added a dll which has a form. Now when I change to a tab method in that dll gets fired and form comes up, which makes everything else unresponsive.... Whats the best solution to implement thread to solve that problem.... Secondly, I tried doing something this way..... namespace something { public partial class Some : Form { public Some() { } // Then here more procedures } // Here I created another class which fires the method from dll.... public partial class Test { public DLLFire() { } } Now If i ...Show All

  • Visual Studio 2008 (Pre-release) Com/Wcf Interop (Moniker)

    Has anyone gotten COM/Wcf Interop to work yet Clearly the MSDN article at http://windowssdk.msdn.microsoft.com/library/default.asp url=/library/en-us/WCF_samples/html/e2799bfe-88bd-49d7-9d6d-ac16a9b16b04.asp is incomplete. There are a few "COMmy" things that are incomplete in that... Hi, Do you have sample code on how to consume WCF complex type data service in .NET 1.1 and ASP ...Show All

  • SQL Server Getting the name of the updated table

    I am writing a generic trigger in VS 2005 that selects records from the inserted table, and updates an audit table. I am, however, unable to retrieve the name of the table that the insert occurred on. I am using the following code to select the records, and obtain the name.. Can anyone offer any alternatives to accomplishing this task Thanks in advnace for any help you can provide. Craig SqlDataAdapter tableLoader = new SqlDataAdapter ( "SELECT * FROM inserted" , connection); DataTable insertedTable = new DataTable (); tableLoader.Fill(insertedTable); string insertedTableName = insertedTable.TableName; ...Show All

  • Visual Studio Team System Where to get link for SQL Server 2005 April CTP Developer edition and Standard Edition

    Installing VSTS 2005 Beta 2, for that i need SQL Server 2005 April CTP , but SQL Server 2005 April CTP Express Edition does not provide reporting and analysis services. So from where can i download the complete edition. Regards, Vikas I may be doing something totally wrong, but if you download the April CTP from MSDN, it is an 867MB file.... which is larger than a standard 700MB CD-ROM.  And since it is a CD image, my DVD buring software won't let me burn the image to DVD (unless of course I am missing something...).  Anybody else run into this Bob Willer BetaID 267513 ...Show All

  • Windows Forms DataGrid & Visual Studio.NET 2003

    Hello, I have derived my own datagrid component from the one readily available in visual studio .net 2003 (using .NET framework 1.1). When I include the component in my project, I have noticed the following annoying behaviour: (*) Visual Studio .NET generates code for some additional DataGridTableStyles. To be honest, I think I've erased the code for hundreds of these, and they still keep appearing. It seems every time I make a modification to my DataGrid by using a designer (but not only in that case, there are others that I couldn't notice), VS generates code for a new DataGridTableStyle and adds it to my table. This does "wonders" to my ...Show All

  • Visual Studio How to establish project item DependentUpon other item?

    hello all, is there anyone can give a hand to tell me How to establish project item DependentUpon another item like "form.cs" to "form.designer.cs" and so on. thanks a lot. Since there might be others that would benefit from your solution... Do you mind posting a snippet that would let you add (or move) one project item under another I have not had much luck at all. So far I am basing my custom project on the Project Subtype example - not on PythonProject example... so I don't have a bunch of FileNode, DependentNode etc. I can get a callback when the files are added .. but any attempt I have to call SetProperty() ...Show All

  • SQL Server SETISOLATION_FAILED Question

    I'm loading XML via jdbc driver and am getting the following error: SETISOLATION_FAILED [dbinstancename]A transaction that was started in a MARS batch is still active at the end of the batch.  The transaction is rolled back. Here's the reason for this error message (check Using Multiple Active Result Sets (MARS) topic in Books Online): A batch or stored procedure which starts a manual or implicit transaction when MARS is enabled must complete the transaction before the batch exits. If it does not, SQL Server rolls back all changes made by the transaction when the batch finishes. I can only guess why this might be happening in yo ...Show All

  • SQL Server SQL Server - Data Mining - Memory Issue

    HI ALL, I perform Data Mining using Sql server 2005 CTP and it takes around 1.5 GB Memory to run.. I did try remove all optional components specified in the SQL Server Area Configuration...It did reduce to 256MB but again after couple of reboots the sqlserver is back to its 1.5GB mem space... Just cant work on the machine...all resources are sucked up by sql server 2005.. How can I manage this Beafy Demon All suggestions welcome, Please help..... Thanks! Please provide more details about what exactly you are doing.  Include which CTP you are using and what steps you followed in order to do data mining. Thanks -Ja ...Show All

  • Windows Forms Databing a grid with web service object

    I was using a datagrid binding it with a web service object, i was just wondering whether it is better to bind a grid with the webservice object directly or using certain datasets to bind the datagrid to the webservice object. Please help me understand what you mean by "bind to the WebService directly"   Normally, you'll make a call on a web service method and it will return data and you bind to that data.  You can pass a DataSet back from your web service if you want to use DataSet binding - however, this is not required in order to get your WebService to work with data binding. Joe ...Show All

©2008 Software Development Network