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

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

filson

Member List

nwv
JavaBoy
Thibaut Barrère
bergtatt
C.Melançon
luvzlabz
amitsinha
AndrewBadera
pmak
JasonG271009
Sébastien Nunes
minhnguyen
Jim Perry
danskcarvalho
bozo14
RichardCUK
Devin
Alex1st
Satmann
Dennis Lackey
Only Title

filson's Q&A profile

  • Smart Device Development How to deploy and debug on Windows CE .NET 4.20 with Visual Studio 2005

    First you have to install the .NET Compact Framework 2.0 Service Pack 1 Patch. (You can download it in: http://www.microsoft.com/downloads/details.aspx familyid=7BEFD787-9B5E-40C6-8D10-D3A43E5856B2&displaylang=en ) Second copy the cab "NETCFv2.wce4.ARMV4.cab" to the device and install it. (You will found this cab in %ProgramFiles %\Microsoft Visual Studio 8\SmartDevices\SDK\CompactFramework\2.0\v2.0\WindowsCE\wce400\armv4\) Third open the properties of your project and go to the tab "Devices" and uncheck the option "Deploy the latest version of the .NET Compact Framework (including Service Packs)". After this you are ready to deploy and debug on your device Windows CE .NET 4.20 Keep in mi ...Show All

  • Windows Forms Can't modify assembly properties in deployment project

    I have a deployment project with a number of assemblies in the file system application folder. These assemblies have been placed there as a result of adding the primary outputs from several projects. Some assemblies are referenced by more than one project, and as a result are listed twice (and cannot be deleted). This causes the warning "Two or more objects have the same target location" to be generated when the project is built. I can stop this warning by giving each of the duplicated assemblies a different condition, and this works fine - until I close Visual Studio. It then turns out that the condition property has not been saved - it has dissapeared. In fact, it seems that any property change on these assemblies takes eff ...Show All

  • Visual C++ recv function ??

    The recv function is not working .... something isn't right ... it's like the function gets stuck... no return code, nothing. Does someone know what could be wrong. while ( bytesRecv != SOCKET_ERROR ) { bytesRecv = recv( ConnectSocket, recvbuf, 32, 0 ); // Stops responding here if ( bytesRecv == 0 ) { printf( "Connection Closed.\n"); break ; } printf( "Bytes Recv: %ld\n", bytesRecv ); } Thanx alot Programm3r   after initial inspection, I would suggest : 1. Please check the TYPE of connection : SOCK_STREAM, DATAGRAM (tcp/udp)  2. if connection oriented the  the sockets must be connect()ed before calling  recv().  3 . if u r using connectionless protocol, the sockets must be ...Show All

  • Visual Studio Team System How to report on source code checkin and shelve behavior

    We are enforcing the policy that requires developers to either check in or shelve their code on a daily basis to avoid losing any work. How can I check and report on the checkin/out shelve/unshleve history of every developer The goal is make sure everyone's compliant and notify the ones who frequently go for days without a checkin or shelving. Thanks for any suggestions in advance. Hello, It appears that shelveset data and checked out files are available only through Version Control object model. The files checked out report may be generated through tf command line or Status Sidekick ; for shelvesets I do not think you have any history besides what shelvesets are there for specific user and wha ...Show All

  • Visual Studio 2008 (Pre-release) Can't Install Interactive Designer: Wrong WPF Version?

    So I've been trying to get started with WPF development, but I've had some trouble getting all the components installed and playing nicely together. In an effort to get all the right stuff installed (dotnet3, winfx, wpf, vs extensions, etc), I've downloaded at least a dozen different installers. So it's likely that I have several non-compatible versions installed right now. As far as I can tell, here's what I've got (most of this info was gathered from the Add/Remove Programs Control Panel): Microsoft .NET Framework 2.0 (already installed, long ago; I'd prefer not to uninstall this) Security Update for Microsoft .NET Framework 2.0 (KB917283) Microsoft .NET Framework 3.0 Microsoft Expression Graphic Designer June 2006 CTP ...Show All

  • SQL Server How to force linked rpt to open in new window?

    This seems like such a simple thing, I must be missing something obvious. I have linked reports to view detail in my humongous main report, and I want them to open in their own windows for the sake of speed of navigation. How do I force a new window in Jump to URL Thanks, I appreciate your answer, but I'm still left trying to figure out WHERE to put the html code.  It would make sense that it should go in the main report's RDL, but the code for this hyperlink looks like this:   <Action>   <Drillthrough>     <ReportName>BusDev_Detail</ReportName>       <Parameters>       &nbs ...Show All

  • SQL Server Windows 2000 user profile

    Hi all, Could somebody please help me out I'm running Windows 2000 on my laptop. I opened a new user account and gave it administrative privilegies. I copied the administrative profile to the new account and everything seemed to work except when I tried to open any office application a dialogue appeared prompting me to place the Windows 2000 office CD rom in the drive. Why has this happened How can rectify this problem since I don't have the CD rom. Thanks in advance for any help. Sorry, this is a SQL Server related forum, I guess you won’t get (m)any answers here. Try to place your question in one of the public forums related to Microsoft. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005. ...Show All

  • SQL Server THANK YOU

    Hello, I am working with SSIS. I am using SCD type 2. When I execute it just find new records, even if I don’t chance any row I ended up with double the records. What I did wrong Thanks! See if this demo can help you: http://blogs.conchango.com/jamiethomson/archive/2005/06/06/1543.aspx ...Show All

  • Visual Studio Express Editions May I know the Code of Visual Basic?

    I have some problem of Visual Basic! I read a book about Visual Basic, and I learn the Code, but the book is about Visual Basic 6.0 and I tried to type the code in Visual Basic 2005. And there is an Error. Can someone help me It is about:   Private Sub FileListBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles FileListBox1.SelectedIndexChanged         SelectedFile = FileListBox1.Path & "\" & FileListBox1.FileName         PictureBox1.Image = Load( SelectedFile )     End Sub End Class VB6 is a completely different language to VB.NET and you cannot run VB6 code under dotnet ...Show All

  • Visual Studio Team System TeamBuild + MsBuild Copy Task = No files?

    My Team Build (TFSBuild.proj ) consists of 5 solutionfiles: < SolutionToBuild Include = " $(SolutionRoot)\path\ Solution1.sln" /> < SolutionToBuild Include = " $(SolutionRoot)\path\ Solution2.sln" /> <SolutionToBuild Include = " $(SolutionRoot)\path\ Solution3.sln" /> < SolutionToBuild Include = " $(SolutionRoot)\path\ Solution4.sln" /> < SolutionToBuild Include = " $(SolutionRoot)\path\ Solution5.sln" /> Solution5.sln consists of/refers to/contains/points to 7 project files: Project1.csproj Project2.csproj Project3.csproj Project4.csproj Project5.csproj < --- This is a Web Application Project Project6.csproj Project7.csproj Project5 (in Solution5.sln) is a Web Applicatio ...Show All

  • .NET Development Dataset Access & SQL Database Independent

    Trying to get a feel of what others have done for an application which is required to support Access and SQL Server as a result of different level of sophistication of the client base. Using Dataset, what was the best way of implementing a database independent data access layer Different libraries depending on the database We are using the DbProviderFactory for adhoc queries, but for Dataset, where stored procedures are used in the SQL Server model, what is the best for the Access flavour Hi, Even u are using ADO.net interfaces and abstract classes (IDBConenction, IdbCommand, DbProviderFactory ....) you may face a lot of problems when you support multiple databases : You cannot use s ...Show All

  • SQL Server WITH CHECK OPTION and INSTEAD OF triggers

    I know that INSTEAD OF triggers are not allowed on updatable views that use WITH CHECK OPTION, but this is different. WITH CHECK OPTION has no effect on a view used to update a table with INSTEAD OF triggers. Can you create an updatable view that uses WITH CHECK OPTION on a table that has INSTEAD OF triggers The following code demonstrates the problem. Comment out the create trigger statement to see the behavior change. create table test (test int not null) GO create view test_view as select * from test where test < 0 with check option GO /**/ create trigger test_insert on test instead of insert as insert into test select * from inserted GO insert into test values (1) GO insert into test_view values (2) GO select ...Show All

  • SQL Server Problems in calling SQL Server 2005 Web Service asynchronouslly!

    I have created a SOAP/HTTP end point which returns .NET DataSet ( ... FORMAT = ROWSETS_ONLY ... ). Then I created a proxy class using Visual Studio 2005 and wrote a cusumer .NET class in which I call that web service's method synchronously. Everything is Ok but when I call asynchronously "TargetInvocationException" is raised. I need urgent solution to this problem. Thanks ! If you catch the exception and dump out the InnerException object you will see the root cause of the problem -> try { ... } catch (Exception ex) { if (null != ex.InnerException) { MessageBox.Show(ex.InnerException.Message); } } Or you can examine the InnerException in the debugger in your catch ...Show All

  • Software Development for Windows Vista streams.h

    I've got some older examples that I'm trying to compile, and I can't find a header with some of the base classes. The source that I have says they are in Streams.h, but I can't find the file among the latest Platform SDK. Help please... Kaychoro Because you should use instead the "Microsoft Windows Software Development Kit for Windows Vista" http://www.microsoft.com/downloads/details.aspx familyid=C2B1E300-F358-4523-B479-F53D234CDCCF&displaylang=en which contains streams.h in the DirectShow BaseClasses folder. This SDK runs also on XP. ...Show All

  • SQL Server SourceSharePath

    This is a property of the DatabaseFile collection editor of a copy db wizard created SSIS package. I can't find reference to this anywhere. Any ideas what it is or why it's needed It's pretty well hidden... Open up an SSIS project Open up a wizard-created DB copy SSIS package Highlight the Copy Objects task On the Properties, click on Database Details That should get you to DatabaseInfo Collection Editor Right-hand side, Misc pane, Database Files (Collection) has a '...' dialog pop-up On that dialog screen is where you'll see SourceSharePath ...Show All

©2008 Software Development Network