Software Development Network Logo
  • Visual J#
  • Visual FoxPro
  • SQL Server
  • Architecture
  • Windows Forms
  • VS Express Editions
  • .NET Development
  • Visual C#
  • Visual C++
  • Windows Vista
  • Game Technologies
  • Visual Studio
  • Visual Basic
  • Windows Live
  • Smart Device

Software Development Network >> Shawn Clark's Q&A profile

Shawn Clark

Member List

samelena
Stephen020960
George Cai - MSFT
Syed ghani
dmssjt
elifeinchrist
gman1
Nick Colebourn
Giampiero Saracino
SaravanakumarS
ieuuk
chaosvg
Wessam Bahnassi
carlengerer
TomKohl
Erstam
Caroline_C#
Leigh_d
Daniel Reib
AAjusLT
Only Title

Shawn Clark's Q&A profile

  • Visual Studio Team System Team Build Install Issue

    We are having an issue with the Team Foundation Build Server installation for the RC. The required TFS Service account for TFS and TFS Build we created is a local account (not domain). Team Foundation Server allowed the use of a local account during installation. The build server needs to use the same service account used by TFS, but does not allow you to supply a local account during installation. I used my domain account just to complete the installation. After completion I went into the service and changed the service account back to the local TFS Service that was used for Foundation Server. When I try to execute a build it fails with th ...Show All

  • Visual Studio Tools for Office Word.Docs in VB.Net

    I want to insert text from a Sql Server to a word document using VB.Net and ideas Dim PolicyNumber As DataColumn Dim Policy As DataTable Dim wordApp As Word.Application Dim wordDoc As Word.Document Dim Int As Integer Dim  word.doc As Word.Document Dim  word.doc As Word.Document Dim  word.doc As Word.Document I would like to have the information from the datacolumn to be binded so that when i enter the number it get recongnized by the textbox and binds it to a ms word document....is that possible or is that too complicated ...Show All

  • Visual Studio How can I get data fields to repeat on each page, since they cannot be placed in the Header?

    For example, we need the document number at the top of each page.  Also, when using a table, is there a way to make the table Header print on each page when the table goes to multiple pages Thank you. Interesting. After you checked " Repeat report item with data region on every page ", did you select any control from the dropdown list You know what, that works for me, it should work for you. Good Luck, Long ...Show All

  • Smart Device Development core connectivity issue

    I tried to call ICcTransport::CreateStream(L"", 5000, VARIANT, &piStream), but the return value is 0x89731302. I don't know how to solve this problem. Is there any one can help me There is no sample code for the Core Connectivity APIs which will replace the Platform Manager APIs. And the documents about the CoreCon in MSDN is not very clear either. If Microsoft can release some sample code for CoreCon, that will be very helpful for the developers We are working on releasing sample code for Corecon as part of our upcoming release. For your code, are you connecting to an actual device o ...Show All

  • SQL Server SQL Express Manager does not run

    I am getting an error message during the program startup. TITLE: SQL Express Manager ------------------------------ Error occurred during application start up sequence. Application will be shut down. For help, click: http://go.microsoft.com/fwlink ProdName=Microsoft+SQL+Server&ProdVer=9.00.1187.00&EvtSrc=Microsoft.SqlServer.ExpressManager.SRMainError&EvtID=ErrorDuringApplicationStartup&LinkId=20476 ------------------------------ ADDITIONAL INFORMATION: Method not found: 'Void System.Windows.Forms.MenuStrip.set_Raft(System.Windows.Forms.RaftingSides)'. (XMApp) ------------------------------ BUTTONS: OK ----------------- ...Show All

  • Visual C# BitVector32.Section should be int not bool

    I am getting an error 'Cannot implicitly convert type 'bool' to 'int' ' while using BitVector.CreateSection to get integers from odd numbers of bits. I used this in the same way in another section and it worked fine. I can't see why I get the error now. Does anyone see what I am doing wrong Here is my code: public class ReadDopFixAlt { private BitVector32.Section sectAlt1; private BitVector32.Section sectAlt2; private BitVector32.Section sectFix; private BitVector32.Section sectDGPS; private BitVector32.Section sectHDOP; public ReadDopFixAlt() ...Show All

  • Windows Forms using datagird, datasets etc..

    hello people im using vb2005 and heres my problem i have 3 tables, companys, employes, and company-employes o want to show the company-employes on a grid, usind a adapter and this table contains, date, idcompany and idemploye, so i need to go to the other tables using inner join not to show only the ids but the names from those ids i want to put this on a grid where im going to have on the grid the followind fields. date, idemploye, employe, idcompany, company, and the company needs to be a combobox, that when i click on her, shes makes a select to the database and shows me all the companyes from that database i don ...Show All

  • Visual C# running an application from resources

    Hi i embbed a application as resource.. can i run that app from the resources.. or how can i now extract and put it some where that app and run it.. please post some sample code How did you store the application as a resource As a byte array If so, then I would use the Assembly.Load method to load the assembly into your process's memory, use the CreateInstance method to create an instance of the assembly and then invoke the method that you want. ...Show All

  • Visual Basic Making a picturebox have a transparent background

    I have a picture of a panda with a pink background (panda_down.bmp) and I was wondering: how do I get that pink background to be transparent Draw the image yourself in a paint handler, and use the imageattributes class to make 255/0/255 ( magenta ) transparent. ...Show All

  • Windows Forms DataBound ComboBox Items BackColor Question

    Hi I originally posted this question in the wrong forum so am reposting here. I have a Windows.Forms.ComboBox which is databound to a generic collection, see code below: cboCertificate.ValueMember = "ID" ; cboCertificate.DisplayMember = "Description" ; ExamPreps.Win.UI.BLL. GenericCollection <ExamPreps.Win.UI.BLL. Certificate > obj = new ExamPreps.Win.UI.BLL. GenericCollection <ExamPreps.Win.UI.BLL. Certificate >(); obj.Add( new ExamPreps.Win.UI.BLL. Certificate (0, "** Please Select **" )); IDataReader Dr = ExamPreps.Win.UI.DAL. GenericDataAccess .GetReader( ...Show All

  • Visual Studio Team System Vision / Scope Level

    In regards to creating a vision / scope document, I understand that this is done at the application or solution level. However, the MSF template for the Functional Specifications document includes a Vision / Scope section as well. A Functional Specifications document is written for any new feature that is being introduced into the application. It makes sense to me that a Vision statement should be written for new functionality. This would imply "shared vision" which I think is essential and would also help ensure that the functionality that is designed conforms to the shared vision. So my question is, how many of you actual ...Show All

  • Visual C# Access Web Form member from it’s hosted windows user control

    Hi. I have a web app that uses a IE hosted windows user control. I would like that, somehow, lounch an external event from that hosted control that I could catch in my web form’s code behind or set a web form’s member value. Does anybody know how to do that I would appreciate any suggestions! Thanks in advance! First off you need to define your interface. This is a simple interface declaring the events you will fire, and any properties/methods you will access from the web page. It needs to be visible to COM, so use the following as a template: [GuidAttribute("1F98211C-7A71-4588-8D4A-AD85CA80BAE7&q ...Show All

  • Visual Studio Team System TF30162: Task "WITs" from Group "WorkItemTracking" failed

    This is with Beta3 on a real 2003 Standard Server SP1. Setup worked without a problem. I did change the name of the three accounts but they all work fine. I cannot create a project with a user account that's in the domain admin group. However I can create a project with the <setup> account logged on on the server directly. Thinking it's a SQL permission kinda thing, I gave the domain account all the same permissions as the <service> account, but that still did not work. I tried the deletion of the cache directory, but that did not make a difference. Can someone give me any hints how to go on with this. Peter ...Show All

  • SQL Server Aggregate Function: AverageOfChildren

    I am using the Aggregate Funtion: AverageOfChildren for a Measure. I want to write a equivalent SQL query for the same. Any suggestions as to how can I ge the AverageOfChildren aggregation in a SQL query. Thanks.   ...Show All

  • Smart Device Development RSA Encryption

    Has anyone used RSA Encryption/Decryption for cf Thanks, Paula public string EncryptDataString( string strInput) { string xmlString; InitObject(); xmlString = pvtstr_JustPublicKey; if (strInput.Length <=0) return null ; try { RSACryptoServiceProvider RSAProvider = new OpenNETCF.Security.Cryptography.RSACryptoServiceProvider(); RSAProvider.FromXmlString( xmlString ); System.Int32 numberOfBlocks =( strInput.Length / 32 ) + 1; System.Char[] charArray = strInput.ToCharArray(); System.Byte[][] byteBlockArray = new byte [ numberOfBlocks ][ ...Show All

©2008 Software Development Network