Software Development Network Logo
  • Windows Live
  • VS Team System
  • Microsoft ISV
  • Windows Forms
  • VS Express Editions
  • Architecture
  • Smart Device
  • .NET Development
  • Visual FoxPro
  • Visual Studio
  • Game Technologies
  • Visual C#
  • Visual C++
  • Visual J#
  • Windows Vista

Software Development Network >> Bryan Foster's Q&A profile

Bryan Foster

Member List

Adagio59675
PeterHup
Garry W
Daenris
mtfck
Dmitri Zimin(e)
Jianpeng
Sumukh
Eric Vandenberg
dcallan
Mark Eliason
Timo van Noppen
RockIA
Phillb
Gregory Block
cybrenergy
Spyros Christodoulou
shview
Richard114
Hans Yadav
Only Title

Bryan Foster's Q&A profile

  • SQL Server A request to send data to the computer running IIS has failed

    Hi, I Have an application for Pocket PC 2003 developed in Visual Studio 2003(VB.Net , Smart Device App). I Use Sql Server CE as the database which Synchronizes with Sql Server 2000, SP4. The IIS and the Sql Server 2000 are in different Machines. I Have Installed the proper Sqlserver Ce in the IIS machine and created virtual directory with Basic authentication.I connect my device through Active Sync 3.7. I could browse the sscesa20.dll from Pocket IE and get the ' SQL Server CE Server Agent ' message. The PC to which my pocket PC is connected is under a Proxy. When I tried the RDA.Pull() , the function fails and returns the error " ...Show All

  • SQL Server How to update tables

    Hello, I'm begginning in SSIS. I've made somme tests and I saw a lot of ways to insert rows in destination tables, but I didn't found a way to update rows in destination tables. I have to read rows from source tables in a database. I have to insert this rows in destination tables in another database. If these rows already exists, I want to update them and if they don't exists, I want to insert them Is it possible Thanks Pierre My problem was, "how to generate an update". I think I've found the answer in an other thread on this forum: I have to use "OLE DB Command" and use the for parameters "updat ...Show All

  • SQL Server Show Parameter Selection on Page Header

    My first day using Reporting Services. I have a report parameter that has the following properties: Name: Region Multi-value Available Values = From query Label/Value examples: East/4160 North/869 South/6185 West/5315 The report Page Header needs to show the region(s) selected in a textbox named "SelectedRegion" and the body has a table that shows the filtered data from a stored procedure. What is the best way to populate the SelectedRegion textbox with the Region name(s) selected from the parameter   For example, if the user selected the East and South regions, SelectedRegion must show "East, South" even though there may not b ...Show All

  • Visual Studio Team System About WSS and Versions of Documents

    With Vs 2005 team system can I control the versions of the documents. Can I know who did what on what day on any document Can I see the diffferent versions of the documents with WSS .    Note that you must have that document library configured to maintain version history of documents. This is configured in the General Settings for the doc library when you answer Yes to this question, "Create a version each time you edit a file in this document library " ...Show All

  • Windows Forms A few Windows Forms Questions

    Hello, I've got three questions; Firstly, is it possible to have an event when a certain keyboard button is clicked Secondly, is it possible to write a .txt file Furtermore, is it possible to send files, such as a .txt file via the internet to a certain E-Mail address With Thanks,                    Gal Beniamini. Hello, Thanks very much for the help but I'm sorry I didn't make myself very clear, I'm only using Visual C++ so although the answers are valid, I cannot use them. Therefore, I've still got some questions; firstly, is there a wa ...Show All

  • Visual Studio Team System TFS proxy not working

    hi, I have installed TFS proxy in a separate machine with windows server 2003. I have also configured the proxy.config file as <Servers> <Server> <Uri>http://tfsserver:8081/versioncontrol</Uri> </Server> </Servers> where tfsserver is my server. i have enabled my client machine to use proxy. when i try to checkin or checkout in my client machine, it gives the message that ' source control proxy is not responding ' Also, there is no data available in "C:\Program Files\Microsoft Visual Studio 2005 Team Foundation Server\Web Services\VersionControlProxy\Data" ca ...Show All

  • .NET Development TabControl differences to CF?

    I started a thread in the compact framework forum, but am not getting feedback.  I thought I'd post a link here hoping for some cross over thoughts. http://forums.microsoft.com/msdn/ShowPost.aspx PostID=55315 The idea is that i'm seeing the TabControl working differently from full .Net framework to the compact frameworks, and I'm hoping for some insight.  This looks like a runtime bug in the compact framework, but I hope it's simply developer error. Thank you for any help. Mike, you've got the best place for your question in the CF forum. Ping me if you don't get a response this week and we can ch ...Show All

  • Windows Forms Enforcing Windows XP Silver Theme in application

    Hi, I am currently developing an application, where I would like to enforce the Windows XP Silver Theme onto the whole application. Also if the machine where the application runs has another version of Windows installed. Is this possible, and if yes how Thanks. Torben Nielsen Hi,... Vb.net: create a public module: public Module m sub main() Application.EnableVisualStyles() end sub end&nb ...Show All

  • Visual Studio Team System FxCop not reporting naming errors

    I am trying FxCop for the first time on a test project. I don’t think it is seeing naming errors. I have intentionally put in violations but the tool is not flagging them. For instance: private void junk (int ThiIsNotCAmelCase ) { int a = ThiIsNotCAmelCase; } int thisisalongvar = 1; are not flagged. What am I doing wrong jcp Jcp, For a lot of rules, such as the naming rules, FxCop will only analyze code that is public to the consumer of your assembly. This means that code (such as your method above) that is private or int ...Show All

  • Visual Studio Tools for Office Use Microsoft.Office.Tools.Word.Bookmark in a Shared Add-In for Word ?

    Hi, Is it possible to programmatically add a Microsoft.Office.Tools.Word.Bookmark that provides additional events compared to Microsoft.Office.Interop.Word.Bookmark I have attempted to do : Microsoft.Office.Interop.Word.Bookmark bkm = WordApp.ActiveDocument.Bookmarks.Add("MyNewBookmark", ref rng); And then cast the bkm to a Microsoft.Office.Tools.Word.Bookmark but it doesn't work. Can someone help me please Thank you Hi, It's not possible to cast a Microsoft.Office.Interop.Word.Bookmark into a Microsoft.Office.Tools.Word.Bookmark; however, using VSTO, you can use the AddBookmark method. For ...Show All

  • SQL Server Raise an error in the dataflow

    HI, I have a lookup that find a specific row. If that row does not exist, I need to create a new one. If it exists, I need to raise an error and trap it with the "on_error" event of the dataflow in order to log it. Is there a way to raise an error and specify the error message from the dataflow I was thinking using the conditional split and verify if the value returned from the lookup (by set the error config to ignore the error) is not or not. But how can I raise an error when the value is not null Thank you, Ccote You'll need a script component in order to do this. The syntax is: Com ...Show All

  • Visual Studio Database Project Template (possible???)

    I am attempting to create a standardized database project for our organization that will mimick the project you select when creating a new project in Visual Studio 2005 under Other Project Types>>Database>>Database Project which will allow us to streamline our SQL server 2000/2005 script creation process as about 90% of customization business involves creating SQL scripts for various reporting and/or customization tasks. I have examined thouroughly creating Visual Studio templates using the following URLs: http://msdn2.microsoft.com/en-us/library/6db0hwky(VS.80).aspx and http://msdn.microsoft.com/library/default.asp u ...Show All

  • Windows Forms Removing datagridview rows

    Hi -- If I use the following code: dgv.Rows.Remove(dgvr) (where dgv is my datagridview and dgvr is a datagridviewrow), will this physically remove the datarow out of my underlying dataset or just set it to a state of "Deleted" Or neither Bill remove totally removes the row from the collection. so it is not marked for deletion. ...Show All

  • Visual Studio Team System Ignoring certain DependentRequests return codes..

    Hi all, I am having an issue parsing dependent links that I think has been mostly covered by a few other posts but a solution was not suggested at that point. In post 62544: How to Ignore Web Test Errors there was a suggestion to turn off ParseLinks. This seems a little extreme in my case as I have a request that pulls in about 30 links. One of these links is to an ad server which is called with a URL and no page at the end.. Because there is no html or the like it tries to parse the directory and receives a "403 Forbidden". I would like to just ignore this link in the list of dependent links. I have generated code for the tests but am un ...Show All

  • Windows Forms Inherited Extender Property Defaults

    I've created a new extender component which extends a "Participates" property to other controls on a form.  If I drop that on a form (form A) along with a toolbar I'm able to set the toolbar's Participates property - no problem. Both the toolbar and the extender component are set to "Protected". When I derive a form B from form A&nb ...Show All

©2008 Software Development Network