Siddarth_Chordia_b1f86e's Q&A profile
Visual Studio 2008 (Pre-release) Will the LINQ libraries be included with Vista?
Will the LINQ libraries be included with Vista That is, will version 3.0 of the framework have the libraries for LINQ Unfortunately Linq is not part of .NET 3.0. .NET 3.0 is .NET 2.0 + WWF, WCF, WPF, CardSpace.... LINQ will be part of fortcoming version of VS codename "Orcas" Best Regards ...Show All
SQL Server Using composition to create new specialised components from multiple sub-components?
Hi, In another thread Jamie Thomson very informatively said " The components in SSIS are deliberately atomic (i.e. they do something very specific) so that its easy to put them together to build something greater than the sum of the parts". Which does make a lot of sense. However, I've been finding that I end up having to create exactly the same "pattern" of combined transform components again and again in order to solve the same problem but in different dataflows (or even within the same dataflow). Cut-and-paste-tastic! In order to obtain real re-use, it seems to me like SSIS is crying out for an easy way to create new components by using composition - i.e. the ability to take commonly-used combinations of existing ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Fullscreen mode doesn't seem to work for me...
Hi, I was wondering if anyone had any insight into this. I have my app, and it runs fine in windowed mode, but when I switch it to fullscreen mode, the display seems to clear the screen to grey every frame. I initialize my gfx component like so: gfx = new GraphicsDeviceManager ( this ) ; gfx.PreferredBackBufferWidth = preferredWindowWidth; gfx.PreferredBackBufferHeight = preferredWindowHeight; gfx.PreferredBackBufferFormat = SurfaceFormat .Bgr32; //I tried this thinking maybe it wasn't in a well supported mode that the graphics card knows. This doesn't work. gfx.ToggleFullScreen(); gfx.SynchronizeWithVerticalRetrace = true ; Even if I reduce my draw code to somethin ...Show All
Microsoft ISV Community Center Forums MS Office document and image writer print driver
Besides removing this feature from Office during setup, is there a process to remove this virtual printer from 300 users with roaming profiles on an active directory network We are having an issue with this printer assuming the "default printer" selection for our users. As a work around we have changed their default printer, but after they reboot or log off / on it has defaulted back to the MS Ofc doc and image writer printer. 1. Go to Control panel – Printer and fax 2. Add Printer – select local printer attached then manual 3. In the port option select Document image printer writer port 4. Install a generic text only printer. 5. Right-click on the generic text/only printer driver and select prope ...Show All
Windows Forms Binding custom collection to datagrid remove problems
Dear All. I've problems about Datagrid concurrency. I've implemented a custom collection (implementing IBindingList) that notifies changes to the datagrid that is binded to. In addition i've a button that in it's click event call a function that remove all the custom collection items but after a while the form closes throwing a StackOverflowException. Is it a winforms bug when pinting am i doing somethig wrong Help me please. Thank you. Of course: The code for the Custom collection: public abstract class CustomCollection : CollectionBase,ICloneable,IBindingList { public CustomCollection() { // // TODO: Add constructor logic here // } #region ...Show All
SQL Server How to call proc on linked Oracle server
Sorry if this is very stupid question, but i've spent too long searching for the answer: I have a linked Oracle server set up for RPC in SQL server 9 db. How do I call it I've tried this, but gives Unspecified error: " OLE DB provider "OraOLEDB.Oracle" for linked server "SANSORA1" returned message "Unspecified error". " From this: declare @UserName char ( 20 ) -- Current Username declare @Password varchar ( 20 ) -- Current Password declare @PasswordNew varchar ( 20 ) -- New Password declare @PasswordCfm varchar ( 20 ) -- Confirm New Password set @UserName = '900878' set @Password = '900878' set @PasswordNew = '777' set ...Show All
SQL Server cant connect to MSSQL Server Express 2005
Hi, i have installed MS SQL Server Express 2005 on my local machine. Also the managment Studio. I can connect to the MS SQL Server Express 2005 with my c# programm and with the mangament studio. I have in Windows/system32 the file ntwdblib.dll version 2000.80.2039.0. The TCP/IP and Ip Protocl are active. But i cant connect with php to the local MS SQL Server Express 2005. My php code is: mssql_connect('192.168.0.2,1433', 'martin', ''); I get the return code Warning : mssql_connect() [ function.mssql-connect ]: Unable to connect to server: 192.168.0.2,1433 in c:\Inetpub\wwwroot\Projekte\Skripte\mssql_connection.php on line 2 Does anyone know what i made wrong or i have forgotten mfg martin Hello, i use W ...Show All
Smart Device Development Is there any way in VS2005 automatically downloading the reslut to target device like what eMvc4.2 does?
I used eMvc4.2 for PDA software devlopment in the past, when migrate to VS2005, the compiled result doesn't downlaod to the PDA automatically, could any body tell me how i should do when using VS2005 ...Show All
Software Development for Windows Vista Audio Playback problems in Vista and Windows Server 2003
We make a dll that is able to play any number of Audio files using subgraphs patched one or to any number of audio renderers present in the machine. It also does samplerate conversion and scales any bitdepth of sample. The problem is that on XP/2000 it works fantastic and when you try and run it on either Vista or Server 2003 it becomes unpredictable/unresponsive and you loose control over the subgraphs. I have trie reading all sorts of documenation and what others experienced but found nothing that explains or helps me to correct the problem. I suspect (pretty sure) the threading have been altered in the directshow but would like to have this confirmed and what im supposed to do about it. BMS-Joppe I don't think the ...Show All
Visual Studio 2008 (Pre-release) "Download Dialog" from an XBAP
According to these: http://msdn2.microsoft.com/en-us/library/aa480229.aspx and http://msdn2.microsoft.com/en-us/library/aa970910.aspx I can fire off a "Browser Download Dialog" from within an xbap, which I assume would enable me to give a file to the client. How exactly is this done I've searched for hours now and can find no example. I've tried using a frame control but it fails with "Failed to convert resource into object." Will I need to write some something to force a download from an html page embedded in a frame I've found a vague tip here http://scorbs.com/2006/06/14/photostore-xbap-standalone to set the Content-Disposition header to “attachment” on the server. But that tells me nothing about what I need t ...Show All
SQL Server Full text Index on US English String
Hi, The following queries on a fulltext index is returning different results. select CustomerNameLocal from dbo . Customers where contains ( CustomerNameLocal , 'A.C.E' ) -- returns 1388 records select CustomerNameLocal from dbo . Customers where contains ( CustomerNameLocal , 'ACE' ) -- returns 1388 records select CustomerNameLocal from dbo . Customers where contains ( CustomerNameLocal , 'ace' ) -- returns 1388 records select CustomerNameLocal from dbo . Customers where contains ( CustomerNameLocal , 'a.c.e' ) -- returns 22 records Can someone let me know why the last query is retuning only 22 records. Since search on ACE and ace returns the same number of records - I guess there shouldn ...Show All
Visual Basic Dataset .vb file Disappearing
The following has occurred several times on my system: In my program, I have a dataset called Cornerstone.xsd While programming, an error occurs and VS 2005 shuts down. When I reopen, VS says it can't find the .vb file which houses the underlying data definitions, etc. When I check the folder, the file has disappeared, and the project won't compile. Any idea what would cause .xsd files to get messed up Thanks. Just a followup, I found the .vb in the trash can. How in the hell did it there Is there a quirky VS 2005 function that deletes files Weird. LC ...Show All
Smart Device Development EnableApplicationLauncher() catches state change only once
Hello to everybody! While developing an C# application on Windows Mobile 5.0 , I came across the State and Notification Broker . It is really a nice thing, but as it seems, it is not very well documentet, especially when it comes to the managed code in Microsoft.WindowsMobile.Status . I want my appliction to be launched when for example the property PhoneNoService changes. I am unsing this code to do this: if (!SystemState.IsApplicationLauncherEnabled(id)) { SystemState phoneNoService = new SystemState(SystemProperty.PhoneNoService); phoneNoService.EnableApplicationLauncher(id); } Now, when PhoneNoService changes, my application is launched as wanted. But only this time. After closing the application, it doesn’t start again, if Ph ...Show All
Visual Studio Can I install VS.NET 2003 on a computer having VS.NET 2005 already installed
Hi, I would like to know if it is possible to install Visual Studio.NET 2003 on my Windows XP Professional SP2 computer having Visual Studio.NEt 2005 already installed Will both IDE work properly Grateful for answers /M Your welcome. Mark the post as the answer, so when others search the forums, they might be more inclined to look at a successful post than a non successful one... in the search results the Answered posts are bubbled to the top before the unanswered . ...Show All
Windows Forms SQLDataAdapter Error when added to a form
Hi, Please can anyone help me When I add a SQLDataAdapter to a form I get the following error message displayed. --------------------------- Microsoft Visual Studio --------------------------- Failed to create component 'SqlDataAdapter'. The error message follows: 'System.Security.Cryptography.CryptographicException: Key not valid for use in specified state. at Microsoft.VisualStudio.Data.DataProtection.DecryptString(String s) at Microsoft.VSDesigner.Data.VS.DbSourceWizardUtil.GetSEConnections(IServiceProvider serviceProvider) at Microsoft.VSDesigner.Data.VS.DataAdapterWizard.GetConnections() at Microsoft.VSDesigner.Data.VS.ConnectionPage.RefreshConnectionList(Boolean allowChangeSelection) at Micros ...Show All
