Software Development Network Logo
  • SQL Server
  • SharePoint Products
  • Visual C#
  • Visual C++
  • IE Development
  • Game Technologies
  • VS Team System
  • Windows Forms
  • Windows Vista
  • Audio and Video
  • Visual Studio
  • Visual FoxPro
  • Smart Devicet
  • Visual Basic
  • .NET Development

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

white2grey

Member List

DSimmon
LiquidAsh
Andrew Lytchev
prithvi4u
Alex Levin
Jessica Alba
LouisVanAlphen
mbieweng
Jeon
Joaquín Raya
kopo
Sriram Rajamanuri
MehrdadDotNetOK
RMD
Ross B.
Amjath
Kira_26
progames25
J. Clark
jaegd
Only Title

white2grey's Q&A profile

  • Visual C# How to access a generic method argument in the following example:

    The calling code looks as follow: Session[KeyName] I need to know the value of the KeyName inside the Session property below. private static Dictionary < string , object > m_Session = new Dictionary < string , object >(); public static Dictionary < string , object > Session {       get        {             //need to check here whether a requested dictionary KeyName             //exists before attempting to return its value.             return ...Show All

  • Windows Live Developer Forums Image search?

    Looks like my posting about Image Search was deleted (not sure why). All I'd like to know is this: when, if ever, will image search be implemented Thank you. I think Yahoo must've lowered their limit. I think they were once 10k. But, it doesn't matter much since, like MSN Live, this number is linked to an IP address. Which means I could publish an app and each installation will have 5K hits per day. I have no idea what Google is thinking by limiting their hits to Developer ID. That means that an entire deployment of an app, regardless of users, only has 1K hits per day. That's just useless. ...Show All

  • Visual C++ C++/CLI problems/issues

    I have some questions on C++/CLI issue. Let me explain my situation: I have an existing native COM dll that contains my logic. It has been tested and works fine with native C++ client using CoCreateInstance. I would like to add a new logic and notice that BCL has a class that I can use. So I add a new source file and header which I compile with /clr since I need to use one of BCL classes (actually, at this point, it is just an empty shell). When I tried to CoCreateInstance in my native client, it couldn’t create. But if I go back to my COM dll project and take out the /clr in my new source file, it works fine. After some debugging, I found out the problem and have been able to fix the issue. However, I would like to get more detai ...Show All

  • Software Development for Windows Vista Does anybody know where I can find largeint.lib ?

    Hi I have C++ Visual Studio 2005 and I can`t build my project becouse compiler call error: I can`t find largeint.lib I installed Microsoft Platform SDK R2 and I made XP32_DEBUG in BaseClasses of it (I work under windows xp 32-bit). I looked all resources for largeint.lib but it returned nothing. Please help me ! In the Project you are building, remove largeint.lib from Properties/Configuration Properties/Linker/Input/Additional Dependencies. The later Platform SDK's include VS2003/2005 project files. See: Microsoft Windows Server 2003 R2 Platform SDK or later. ...Show All

  • .NET Development Discovering serialized objects on a network stream

    Hello all, I'm hoping I might get a little guidance or opinion on something. I have a server application handling a number of clients via TCP/IP on different ports. The server holds rapidly changing data (processed from an incoming datastream) in an in memory dataset - this data is required to be displayed and used by a variety of client apps in different ways, but essentially they all need the same data held in the dataset. Currently there are a number of formatted, comma-separated messages that go to the clients, but which then require more processing at the client end. It is my intention to simply serialize the server dataset and deserialize it in each client. However, can I still send simple string messages as well as the serial ...Show All

  • Visual C# webclient and http status

    Is there any access to the http status ( 200, 404, etc) and the text (OK, notfound, etc) in the webclient.uploadstring() method if there is a webexception caught then all the failure information you need would be here. Forutnately this method does throw just that - the webexception. http://msdn2.microsoft.com/en-us/library/system.net.webexception.aspx http://msdn2.microsoft.com/en-us/library/system.net.webexception.status.aspx you would look at the status of the exception which has enum values of the webexception (WebExceptionStatus) does this help ...Show All

  • SQL Server SSIS Checkpoints

    I have a package that uses ssis checkpoints. It works well. However, when I try to setup transactions for some task, the chekpoints aren't used. I read BOL and It states: "If a package is configured to use checkpoints, Integration Services captures the restart point in the checkpoint file. The type of container that fails and the implementation of features such as transactions affect the restart point that is recorded in the checkpoint file ." But, how checkpoints are affected by transactions what relation exists between this two components Hernan93 wrote: Yes, you are rigth. And package always restarts from the begining Hernan, Is it possible for you to post a repro - perha ...Show All

  • Software Development for Windows Vista This workflow is not owned by the WorkflowRuntime.

    Hi, I've got a sequential workflow that occasionally starts throwing the above exception. The app works its way through all the activities successfully creating the "executing" record for the HandleExternalEvent activities up to and including the last one, then fails (regardless of which one is last) and then starts cancelling and closing the activities. I've disabled the "last" activity and it just fails on the next to last (now the last activity). I'm adding the Persistance service with the following: Dim owr As Object = HttpContext.Current.Cache(_WFName) ' Cache is per AppDomain If owr Is Nothing Then System.Threading.Monitor.Enter(_sync) owr = HttpContext.Current.Cache(_WFName) ...Show All

  • Windows Forms Creating Windows Form based on XSD

    Is there any way or any tool out there that will generate windows form fields based on an xsd You probably meant XML. Check out this project . Also, .NET 3.0 supports WPF whose forms are designed with XAML. The tools (Cider) are still alpha quality. ...Show All

  • SQL Server SQL 2005 On Vista

    Has anyone managed to get SQL server 2005 standard edition working on Vista If I install from CD I get an error message Error Message: sql server setup could not connect to the database service for server confiurgration.The error was[Microsoft][SQL Native Client]Shared Memory Provider:No process is on the other end of pipe. I have then tried installing SP1 (which i understand is meant to fix some of the vista issues), but then when I then try to re-install from the CD it says the version on my PC is more up-to-date and doesnt install. All I have in Programs - SQL server 2005 - Are the Configuration tools, not the Management studio etc. Not that this would be helpful, but I managed to ge ...Show All

  • .NET Development framework 1.1 vs 2.0 is Inconsistent

    When running this code against the 1.1 framework the output looks like <rs:data xmlns:rs="urn:schemas-microsoft-com:rowset"> <z:row HireDate="1992-05-01T00:00:00.0000000-05:00" xmlns:z="#RowsetSchema" /> </rs:data> When running against the 2.0 framework the output looks like <rs:data xmlns:rs="urn:schemas-microsoft-com:rowset"> <z:row HireDate="1992-05-01T00:00:00-05:00" xmlns:z="#RowsetSchema" /> </rs:data> It is the same sql server instance. Does anybody know how to control the timezone and or number digits of percesion returned in the milliseconds part it's almost like the 2.0 framework just drops the ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DreamBuildPlay is up!!!

    Now go register!!   Actual contest details to come the week of Feb 5th Plese, Someone at Microsoft.... the drembuildplay site, even though the competition should be global, does not allow non-US people to register. I don't live in the U.S., so I can't choose any state, the zipcodes in my country are 6 digits long, and the telephone numbers are not in the US format.  Edit: didn't see errolian's post before i posted this. P.S. did I mention I passed from neutral state, to exalted state and then down to low-morale state in about 2 minutes .... does this make me emotionally unstable ...Show All

  • Visual Basic email to send in html format !

    I have to use only visual basic 6. Want to send email in html format. Any code please http://msdn.microsoft.com/library/default.asp url=/library/en-us/e2k3/e2k3/_clb_sending_smtp_mail_by_port_25_using_cdosys_vbs.asp ...Show All

  • SQL Server DMX Query, Group by

    I'm having some problem with this DMX prediction query. This is the first time I'm trying out the GROUP BY statement in the DMX query and I keep getting "Parse: the statement dialect could not be resolved due to ambiguity." message. Is Group By supported by the DMX What am I missing If not supported, could I insert the result into a temporary table using SELECT ... INTO.. FROM and run a group by on a temporary table This is what the DMX query looks like... SELECT t.[AgeGroupName], t.[ChildrenStatusName], t.[EducationName], Sum(t.[Profit]) as Profit From [Revenue Estimate DT] PREDICTION JOIN OPENQUERY([DM Reports DM], 'SELECT [AgeGroupName], [ChildrenStatusName], [EducationName], [Profit], [Incom ...Show All

  • Commerce Server Site Error in an undefined location

    Hello, I was working on my MSCS 2007 site, the last I remember doing was adding a weakly typed property to the Purchase Ordes. OrderObjectMappings.xml, I ran the ordermapping.exe and everything was going ok. Then an error occured, an invalid Cast from DBNull to String... It occured on every page, as if this is happening before even processing the pages so I think it's GLOBAL to the entire site. I dont remember changing any connection values or strings. Here is the trace stack and whatever information is displayed in it... Any help regarding this issue is extremely appreciated. Thanks Unable to cast object of type 'System.DBNull' to type 'System.String'. Description: An unhandled exception occurred during the e ...Show All

©2008 Software Development Network