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

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

cosminb

Member List

sourabh1982
Jesse Wolgamott
enric vives
Vedratna
yxrkt
Data Base
Anthony Carabbio
Residual Logic Games
NeedSomeAnswers
magicalclick
p.cosmos
oykica
n0n4m3
Xenon86
Michal Levy
Cest la vie
SPWilkinson
Inaki Ayucar
double americano
Kevin Barnes
Only Title

cosminb's Q&A profile

  • .NET Development HOT FIX K921883

    Hi All,   After implementing the HOT FIX K921883 released by microsoft , My application start giving error while executing DML statement on SQL server 2000. The underlying framework used is .NET 1.0. The hot fixed target .NET 2.0 framework.   Please help me to sort resolved this problem.   Thanks, Thx for ur reponse.... but i can't remove the hotfix....company is asking me to make the application compliant to this hotfix..as other applicationa r running fine ...Show All

  • Windows Forms Run an application after Install.

    Hi, I've created a setup project and add an Installer class to do my custom Action. When the installation is end i want to run my application : To do that I use the method Process.Start public override void Commit(IDictionary savedState) { base.Commit (savedState); string DirMain= System.Windows.Forms.Application.UserAppDataPath; DirMain = DirMain+"Hip\\Hip.exe"; System.Diagnostics.Process.Start(DirMain); } When I'm in a administrative windows account that run correctly but when i'm with a user with no privileges i've an error message of the JIT : ” JIT Debugging failed with the following error: Access is denied.” I search in the msdn and the solution is to add the user to the Debugger Users gro ...Show All

  • Visual Studio How to catch .net 2003/5 solution tree drag and drop event

    I am using EnvDTE to build an addin for .net 2003/2005. I am trying to catch the drag and drop event of the solution tree for both file items and folders. From the EnvDTE module, I can't find anything which is really useful to do this. Also, found that IVsHierarchyDropDataTarget and IVsHierarchyDropDataSource interfaces in the VSIP provide support for drag and drop, but I have no idea to hook them up with the IDE's solution tree so that we could catch the event. Please help on this. Thanks very much. Ivan Hi Ivan, This particular interface is implemented by the hierarchy implementor. Basically, the project hierarchy consists of a number of interfaces, like IVsUIHierarchy, IOleCommandTarget, IV ...Show All

  • Visual Studio 2008 (Pre-release) blend project to VS to xbap - how?

    I have created a project in Blend. It has a xaml file and some codebehind which is c#. I now want to create an xbap. I have VS installed but have no idea how to create the xbap. I open up the project in VS and get lots of warnings and the project will compile and run. I then right click the project and choose publish and go through a wizard which creates a bunch of files that dont mean a great deal to me. On one site I saw that it was possible to look manually create the xbap instead of using the wizard - could someone point me in the right direction in VS on where this is or better still any tutorials out there It used to be nice and easy as I used EID to create the xbap but with Blend its not possible and you have to now learn V ...Show All

  • Smart Device Development Create Emulator

    Hi all. How can i create my own emulator by VS 2005 in my project and us it.(for example create window in my emulator). thankc Mohit Gogia in VS 2005 when you create projec and run it .it rans his own device.and i want create project and ran but where i can run my device emulator and do with it what i want.For example carete windows in my devace. thank. ...Show All

  • Windows Live Developer Forums Problem Signing In

    Hi, I'm having a problem signing into my Windows Live Messenger 8.0. Everytime I first log onto my file and go to sign into the Live Messenger, some error message comes up with the code:80004005. I've been doing everything that I can to fix it but nothing that I've done has worked. So if anyone knows how to fix it, please e-mail me at black_nigga_12@hotmail.com Thanks, Blacks The purpose of this forum is to discuss MSN and Windows Live application development using the Messenger Activity API, and Windows Live Bots. If you have technical support questions about using MSN Messenger or Windows Live Messenger, please check the following resources... Messenger Technical Support is available on the Messenger newsgroup ...Show All

  • SQL Server List Attribute Names for Single Node

    Hello, I am trying to accomplish the following goal: "For any given node in an xml variable, return via recordset a list of attributes." Take the following query: DECLARE @x xml SET @x = ' <Item> <Data Key="ID" Value="1001" /> <Data Key="Name" Value="Blue" /> <Data Key="Type" Value="Color" /> </Item>' SELECT x.value( '@Key' , 'varchar(255)' ) as [Key], x.value( '@Value' , 'varchar(255)' ) as [Value] FROM @x .nodes( '//Item/Data' ) Data(x) That will return: Key | Value ------------- ID | 1001 Name | Blue Type | Color What I want is to be able to query @x ahead of time such that I get back somethi ...Show All

  • Visual Studio Express Editions error connecting to database

    I am using VC# Express and trying to connect to a SQL 2000 database. The error message when I compile the application is as follows: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) Is there anyway to connect to SQL 2000 with VC# Express or is this a waste of my time. using System; using System.Data; //ADO.NET namespace using System.Data.SqlClient; //Use SQL Server data provider namespace using System.Collections.Generic; using System.Text; namespace Da ...Show All

  • .NET Development Retrieving data from Excell 2003 - Could not find installable ISAM.

    I am trying to access some data in a Excel 2003 file and import it to a dataset using a oledb provider.Here is the code : string cnxString = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=C:\\TEST.xls;" + "Extended Properties=Excel 8.0;"; this.excelConnection.ConnectionString = cnxString; this.excelConnection.Open();I keep getting this error :A first chance exception of type 'System.Data.OleDb.OleDbException' occurred in System.Data.dllSystem.Data.OleDb.OleDbException: Could not find installable ISAM.I have search everywhere there is a space between data and source. I have read the KB articles but nothing seems to be doing it. Any help would be greatly appreciated.Thanks. ...Show All

  • SQL Server HOW TO: Print a report directly to a printer

    The code below is a class file done in vb.net. The original idea came from reading this forum and some blogs. To use the code below, you can create a windows application or service. then create a class file and drop this code in it. Remeber to reference the 2005 report execution service and also in the program settings include the path to your server. IE: ReportExecutionService = http://localhost/ReportServer/ReportExecution2005.asmx or whatever your server URL is at. Setup the public properties for printername (sharenames work fine), Number of copies and Report name. That is all there is to it. This code is REALLY expandable to add more options. Please remember to let me kow if you like this. Imports System ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Beginner shader question - I'm missing something obvious

    Hello, all: I'm working on a simple space sim, and I'm trying to render a weapon shot using an HLSL shader. I haven't used a shader before, so I've read through a bunch of code samples, and picked up a couple of books, so I *think* I (kind of) understand what's going on with vertex and pixel shaders. The problem I'm having is that when I enable the vertex shader the mesh I'm rendering is drawn in black. If I disable the vertex shader (comment it out), the pixel shader outputs the color I expect. I've tried it with a mesh I created and with a mesh created via Mesh.Sphere with the same result. Here's the shader code (it's almost an exact copy of the simple pixel shader code from MDXInfo). As you can see, it's totally simple: uni ...Show All

  • SQL Server Stop Processing on Key Errors AS 2000

    I'am using MS AS 2000. I have added to my fact table keys which are not included in my dimension tables. Then I process the dimensions and the cube. I fully processed the cube and used the default process options (Stop Processing on Key Errors; 0). But the cube processed without an error. The invalid records in the fact table are just ignored. Why Thanks for any reply, Michael is right, by default AS 2000 does inner joins between the fact table and all the dimension tables which will exclude your invalid fact records. You can setup AS 2000 not to do inner joins by optimizing the schema (look up "optimizing cube schemas" in Books on line) but your invalid fact records will still be ignored as AS 2000 has no means of ma ...Show All

  • Gadgets Where's the "Add to Space" button

    Hi, I have uploaded my first web gadget, called A, onto the library. Everything worked fine. There's a bug in A. Then I edit A, upload a new zip file. A change to "pending approval". This morning, I logged in my gallery and I see 2 versions of A. The old A: with a bug in it, there are 2 buttons when I browse to it "Add to live" and "Add to space" The new A: there is only 1 button when I browse to it "Add to live". Where is the button "Add to space" in this case Is there any wrong step that I did during upload And the edit gadget functionality is not supposed to overwrite the old one (keep 2 version as I stated above) Thanks Bao Nguyen. This seems to be a common pr ...Show All

  • SQL Server Varchar of length > 8000 causing problems

    Hi, i am having trouble passing strings of length > than 8000 chars to my stored procs. I have tried batch update, splitting the strings and calling the procs multiple times. But maintaining transaction is a major worry in these situations. Can someone suggest a feasible solution regards sandeep Hi, if all that restrictions apply, you will have to use more than one variable to pass to the server. I don’t see any alternativ for now. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Basic Dot Net Interface for an Audio mixer?

    I've recently moved to Vista and and I have full duplex high definition audio on the new machine. Vista still has a similar GUI for the mixer but at least with the Analog devices drivers the only way to control input levels are to constantly go to the control Panel and adjust the input under sounds. It's not a great user interface. In looking at the mixer, I notice that old programs such as Goldwave and my old vb6 WMP mp3 player, when running both show up in the vista mixer presumably as audio sources. I'm trying to understand where to begin with an integrated audio level mixer. Is this done at the driver level Is there an API for it I've researched this on the net before and I don't think I've found an answer. I've no idea ...Show All

©2008 Software Development Network