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

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

ritzratz

Member List

chxfryer
adam99
Wolfsvein
maulikk
TheSonny
jrp210
Guy Maoz
bflemi3
aschaeffer
bohiti
CoreyMc
nirmalarasu
tkrasinger
Sixon
Bruce Baker
Noorul Ahmed
joshlrogers
ash9696
kypdash01
Linda Cornerstone
Only Title

ritzratz's Q&A profile

  • Visual Studio 2008 (Pre-release) ObjectContext - pluggable/overridable for caches, etc?

    In the Overview document, Object Services has some listed features including: change tracking and entity loading. My guess is that these are handled by (or via) System.Data.Objects.ObjectContext. Will this class be 'swappable' or otherwise allow extension by allowing pieces of implementation to be plugged in perhaps by implementing certain interfaces I am thinking about situations where you might want to handle change tracking differently or load entities from another unsupported source or plugin a high-level cache. Similarly, extensibility for update processing Cheers, -Matthew Hobbs About extensibility of the framework... i have a very common problem in my domain, It is, objects versions. I w ...Show All

  • SQL Server SSIS - execution problem

    Hi, I have been using SSIS now for quite sometime and over teh past month when i open for edit or execute a package SSIS just seems to go away and wait for about 10 minutes before opening or starting the execution. I have defragmented my drive, i have monitored cpu usage and it just looks like it is not doing anything at all. I am running windows xp connecting to windows 2003 servers with sql server 2005. Has anyone else experienced this and can anyone help Thanks Delay in executing the package could be related to the issue described in http://support.microsoft.com/default.aspx/kb/918644 ...Show All

  • Visual C++ convert char array to a string

    how can i convert a char array into a System::String^ i have tried some research and cannot find how i have tried not making a char array at all but that didnt work out thanks in advance Is this what you mean Here is an example for a native array: using namespace System; void main() { char *string1 = "hello1"; wchar_t *string2 = L"hello2"; String ^s1 = gcnew String(string1); String ^s2 = gcnew String(string2); Console::WriteLine(s1); Console::WriteLine(s2); } ...Show All

  • SQL Server To bcp out a views results into a txt file

    I am trying to bcp out a views result into a text file. And the records in the text file should be comma seperated and each record should be enclosed in quotations. For tab delimited you use \t in the bcp.Can anyone help what needs to be used in the bcp to get the results in the txt file as specified For example: "100","name","2006-05-07" Thanks edited hi cast, first create a view with northwind use northwind create view mytest as select  '"'+ rtrim(employeeid)+'"' as employeeid,         '"'+ rtrim(lastname)+'"' as lastname,         '"'+ rtrim(firstname)+'"' as firstname from em ...Show All

  • Software Development for Windows Vista Transaction not committing?

    I've missed something somewhere. :) If I drop a Code activity into a TransactionScopeActivity, and then if I call a SQL Server stored procedure that updates a row in a table in the database, merely closing the connection in the TransactionScopeActivity should commit the data (assuming no other error). But it's not, at least in my case. I've set the IsolationLevel to all manner of things: Serializable, ReadCommitted, ReadUncommitted...nothing seems to commit the data. The stored procedure checks that it's in a transaction and errors if not, so I know it's within a transaction. It returns the modified column value as an out parameter, and the value is good. But the row/column never get committed in the database. I'm totally convinced I ...Show All

  • Visual C# VS 2005 IDE Bugs, problems and suggestions

    Hello, I can't find a way to submit bugs or suggestions regarding VS. So here's a topic for that. Apparently bugs in the VS 2005 IDE: - the Document Outline window doesn't show XML files structure as it did in VS 2003 - when an item is selected in the Class View window (e.g. a namespace or a class), the item's properties are not displayed in the Properties window, as it was in VS 2003. Regards, Ruslan Feedback on Visual Studio (and many other MS products) can be submitted through the Microsoft Connect web site: https://connect.microsoft.com/VisualStudio -Tom Meschter Software Dev, Visual C# IDE ...Show All

  • Visual C++ COM newbie question

    when i use COM objects from C++ i need GUID and interfaces definitions.. i usually get them from an header. I noticed also that when i add a reference to a COM object (dll) in a C# project, the enviroment get directly all those informations about classes and interfaces. this suggest me that i could use COM objects even without headers. So my question is, it is possible to retrieve guids and interfaces definitions from a com object thanks to everyone in advice :) C# IDE does this by reading COM component type library. To to the same in C++ use #import directory with COM Dll name. It reads type library and generates wrapper C++ class which can be used by client code. ...Show All

  • SQL Server SQL 2005 x64 Setup Fails

    Below is the error message receive when installing SQL 2005 (x64) enterprise edition. Failed to install and configure assemblies c:\Program Files (x86)\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\microsoft.sqlserver.notificationservices.dll in the COM+ catalog. Error: -2146233087 Error message: Unknown error 0x80131501 Error description: The transaction has aborted Has someone seen this before Any pointer is appreciated. Thanks. I'm aware of one issue like this, but I'm not sure if they're the same. Do you have MSDTC installed on the machine If not, that's likely the problem. Paul ...Show All

  • Windows Forms ToolTip Owner Draw

    I have created a ToolTip class and set the OwnerDraw property to true. I have hooked the Draw and Popup events and it is working ok. The content that I am rendering contains graphics and text. I'm just wondering why the only way to popup a ToolTip forces you to specify some text, for example: _calloutToolTip.SetToolTip( _mainPicture.Renderer, "dummy" ); All the overloads for Show also expect text. Is there anyway round this No real problem here, just a little bit backwards with the API. A Show() overload with no text would be a bit more intuitive. Maybe for the next version of the product will create a Component (SmartTag - like the Outlook notifier) to encapsulate a tool tip / contex ...Show All

  • Internet Explorer Development IWebBrowser2:Navigate() Err under IE7

    Hi, This is an IE7 specific issue since it's been working fine so far under IE6. If I try to use a URI using http or https protocols on a C++ app using the Navigate method, I always get the same error: Cannot find "https://domain/path" Make sure the path ot internet address is.... Note that using the file schema works just fine (ie file:///c:/test.html) Any help would be much appreciated, Thanks in advance, Well, this is what I did since I was spawning a child thread from my CWnd::OnInitDialog() function: 1) pass a pointer CWnd *pMainWindow to your spawned thread 2) call pMainWindow->SendMessage(WM_USER + 1); // custom user messages start after WM_USER 3) override CWnd::OnWndMsg(...) in your m ...Show All

  • Visual C++ Windows Media Player - Visual C++ Runtime Library

    OK...I am not sure if this is where I need to post this, but it looked like the place. I am running Windows XP I have been trying to open my Windows Media Player 10 and this is the message that I get.... --------------------------- Microsoft Visual C++ Runtime Library --------------------------- Assertion failed! Program: ...rogram Files\Windows Media Player\wmplayer.exe File: .\geiss.cpp Line: 509 Expression: hdc == NULL For information on how your program can cause an assertion failure, see the Visual C++ documentation on asserts (Press Retry to debug the application - JIT must be enabled) --------------------------- Abort Retry Ignore I have tried downloading WMP again, but nothing. The player was working O ...Show All

  • Windows Forms windows service confirmation

    Dear All, I have created a windows service with the installer and successfully installed it. But I am lost and dont know whether or not my service is running or not I have put debug.write in my code but I dont know where to check either My service code I put in the onstart function is this correct or must I need an extra main function how to control my service to run just on a particular hours of a day Thanks. Dear Ashish, I know I have tried to drag a timer to my designer of my windows service. There is an interval settings shall I set there Or do you have any good example where I can reference on the timer stuff. Thanks. ...Show All

  • Visual C# How to create Progress bar

    hi all i have one application that opens a file. i want to show progress bar while application opens that file. Till the progress of opening a file progress bar should be shown please any one can help me You can use StatusStrip control in which you can add ToolStripProgressBar control. If you set Style property to Marquee all you need to do is start the progress bar and stop when finished with opening file. Also go here to see a really small but good progress bar control: http://www.codeproject.com/useritems/ProgressDisk.asp ...Show All

  • Visual Studio Express Editions Importing VC++ 6 Project

    I have an AppWizard generated project that was built in Visual C++ 6.0. I recently installed Visual C++ 2005 Express, and have not been able to compile it. It can't find any of the afx*.h files. I noticed that someone posted that MFC is not supported on VC++ 2005 Express. Is this true If so, is that only for the Express edition or is MFC support being dropped entirely If it is true that MFC is not supported, can VC++ 6 and VC++ 2005 co-exist on the same computer I'd like to use 2005 for any new projects but I still need to support the old ones. The differences between the various versions of Visual C++ 2005 are explained here . ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Input for Music

    Reading the FAQ, it did state you could utilize audio... But my question is can you target music through the Window's Media Connection Any thoughts I am assuming you mean on the 360, and I can't see any reasons why not, most 360 games allow background music to be played while in the game Although with the whole no ingame networking restriction it could also restrict using the Windows Media Connection, but if you can wait a couple of hours you will find out I'm sure ...Show All

©2008 Software Development Network