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

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

David100

Member List

DanR1
tamasu
YvesR
Robin H. Sanner
riga66
pkrug
jimcjr
Neotech
Radim Hampel
Boretti
Toby Broom
Severin123
Dedy Susanto
GraemeP
Ohla Davio
Prakash selvaraj
Curt Zarger
ntsoo
pinkybaby
Rashar
Only Title

David100's Q&A profile

  • Visual Studio Error 1305.Error during 2005 installation

    Hello, During the installation of VS 2005, the following error appears: "Error 1305.Error reading from file C:\Program Files\Microsoft Visual Studio 8\VC\crt\src\_ctype.c. Verify that the file exists and that you can access it." Then I have the option to retry or cancel. Retry never works. Any help would be greatly appreciated. Thanks. could be a bad DVD/CD. Check this out: http://blogs.msdn.com/pgiffin/archive/2005/06/30/434438.aspx you *could* (but not guarenteed) try to create an ISO of the DVD using nero or something, then mount this to a virtual CD/DVD drive using say, Microsoft Virtual CD tool, and then start the installation from there and see what happens. ...Show All

  • Visual Studio Use MSBuild for Integration Services project

    A intergration services project used typically to build SSIS packages for SQL 2005 as an different type of project file a ".dtproj". This file does not specify a typical build type like a regular C# project (web or otherwise). I am wondering if MS has a addin that MS build can use to build an intergration services project. Currently I use MS build to build my web site, but my Database uses some SSIS packages that I would like build together with the web site then during the deploy I can push the SSIS packges to the SQL server File system where I keep the SSIS packges. Any help or sggestions will be apprecitated javahar ...Show All

  • SharePoint Products and Technologies Application crashed if i set the data source of excel to "external data connections"

    My application would crash if the data source of my excel workbook on server is extracted from sqlserver . So I add a breakpoint to the code... I found it throw an exception when code run on "ExcelService.OpenWorkbook" I saw the post Excel Services Architecture said "You can develop applications that call Excel Web Services to calculate, set, and extract values from workbooks, as well as refresh external data connections" Any suggestion Thanks Luis Bitencourt-Emilio ...Show All

  • Windows Forms Ribbon

    Have microsoft released a Ribbon .NET control, or do we have to make our own There are several out on the 'net (including several that are VERY well written - and are FREE). Make sure you obtain a (freely available) license from Microsoft to use it, though. I've been itching to find an application to use one in, because it's just so freakin' cool. Haven't run across an app it is appropriate for yet though... ...Show All

  • Visual Studio Team System Need help to stop running a Build Type in Continuous Integration mode

    Hi, I havent been able to find anywhere on how to remove or stop Continous Integration on a Build Type. Can anyone point me to how to do this Thanks Hi Steve, No. For Continous Integration to work, you have to register the Build Type on the server. I need to know how to stop/unsubscribe that one Build Type. Thanks, Staffan ...Show All

  • Visual C# Why BindingList is there

    Why BindingList<> is being placed in System.ComponentModel instead of System.Collections.Generic while List<> is in System.Collections.Generic To expand on that, if BindingList were in System.Collections.Generic, that would probably encourage people to use it in inappropriate scenarios. Its databinding support has overheads, and is something you don't want in an awful lot of cases. It's not part of ordinary collection class behaviour. So it's in a different namespace to emphasize the fact that it's not for everyday collection usage. ...Show All

  • SQL Server set textbox.value based on field.value

    I have a field that contains "True" or "False" and based on that value I want to put an "x" in the textbox or not put anything in the textbox. I am using the textbox like a checkbox. my textbox is named tb_CertificateEnclosed my field is named Fields!fldTaxExemptFlag I right-clicked on the textbox in report designer and chose Expression and typed this: = iif(Fields!fldTaxExemptFlag.Value="True", ReportItems!tb_CertificateEnclosed.Value="x", ReportItems!tb_CertificateEnclosed.Value="") So the Value of the textbox is set to the expression above. When I preview the report it has "#Error" in the textbox. Help please! ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Where is the free artwork that was promised for XNA?

    In a lot of articles I've read they said the XNA would have a large database of free artwork (both 2D and 3D). Is this available somewhere Thanks, John Joel Martinez wrote: http://www.turbosquid.com/xna I still don't see how paying for the content creators club gives me access to any other content than what is free to everyone The XNA page quote I cited leads one to believe by paying for a subscription you get access to additional content. ...Show All

  • Visual Studio Express Editions Subform appears behind pictureBox?

    Newbie alert! :) I built a main form and set the property IsMdiContainer to true and then have a subform which works fine. I added a pictureBox to the main form but the sub forms appear behind the pictureBox. Any ideas why private void openToolStripMenuItem_Click(object sender, EventArgs e) { SubForm1 sform = new SubForm1(); sform.MdiParent = this; sform.Show(); } You shouldn't put any controls on the MDI parent form other than a tool strip and a status strip. Use the BackgroundImage property to display a picture. ...Show All

  • Visual C# how can i send mails from my application using Outlook Express

    hi Everybody, Iam doing simulation of MS PAINT ..Here i want to send send mail using outlook express ...similar to ms paint FILE-->SEND menu item ..we have to use add ins forthat.. Hi I think you have two solutions for this: or you try and use the outlook object model for this (visual studio tools for office) http://msdn2.microsoft.com/en-us/office/aa905533.aspx or you use the System.Net.Mail namespace for it http://msdn2.microsoft.com/en-us/library/system.net.mail.aspx http://www.codeproject.com/vb/net/epsendmail.asp my preference goes to the latter ...Show All

  • .NET Development web service error

    Public Function HelloWorld() As String Dim R As String R = "SELECT * FROM PanHotelRate" Return R End Function i wanna return information from my database wif the above codes but there's an error i tink i noe the error it is this: Dim R As String i noe i should not declare it as String but i donnoe any other alternative what should i declare R as You need to plug in a bit of ADO.NET code in your function to do the actual look up. http://samples.gotdotnet.com/quickstart/howto/doc/adoplus/ExecuteCommand.aspx You can then return a DataSet/ string as appropriate. ...Show All

  • Visual C# How can I send SMS using Windows Application in C# .Net?

    How can I send SMS using Windows Application in C# .Net The idea is that there is a mobile phone connected to the computer that will send the SMS using the application. Help. Thanks! I use http://www.scampers.org/steve/sms/libraries.htm#gsmcomm , works fine. I use my own code too, but when the app grow ... gsmcomm was a best solution. Regards. ...Show All

  • SQL Server Returning Values with 2 different SELECT statements?

    Hi there, just want to find out if it's possible to extract 2 different values with 1 select statement I need to extract values from a table, according to a specific condition... eg: to extract values from tableA where "office_name" = "o_id" from tableB, where tableA is the one with the primary key... and then select the office from tableA where the "officeid"=0, and populate that in the same result set... so that it can be populated in a <asp:DropDownList> control, and then be bound to the control based on the DataValueField, and DataTextField is it possible, or not thx SJB Hi, Do you want more than one row, or simply only 1 If you are ok wit ...Show All

  • .NET Development TransactionScope and Jet OLEDB

    I'm doing some POC work on System.Transactions and I am having some difficulty getting it to work via OleDb with the Microsoft Jet 4.0 OleDb provider. I can use DBTransactions just fine against my test database, but if I try to use TransactionScope, I get an error message stating that the ITransactionLocal interface is not supported by the Jet OleDb provider. However, I found the following on MSDN http://support.microsoft.com/default.aspx scid=kb%3Ben-us%3B221071 that claims that Jet 4.0 does support ITransactionLocal. I am going to try against MySql, but didn't want to get to far in to this if System.Transactions only supports SQL Server (which, so far is the only DB I can get it to work against). Thanks ...Show All

  • Visual Studio 2008 (Pre-release) Can you use WSHttpBinding with a WCF hosted on IIS

    I am looking at the example of how to host WCF service on IIS I dont see any WSHttpBidning or BasicHttpBinding, which kind of threw me off for a while The example looks a lot more like ASP .Net, than the WCF service I previously compiled Can you use WSHttpBinding with a WCF hosted on IIS By default, does the WCF Service hosted in IIS use Basic or WS bindings Since I dont see any bindings, how do I know if I am really running a .Net or a WCF I am not sure which sample you are referring to... most of our samples are IIS-hosted. Have a look at http://msdn2.microsoft.com/en-us/library/ms751519.aspx You specify the bindings in the config file. ...Show All

©2008 Software Development Network