Software Development Network Logo
  • Visual Basic
  • Windows Vista
  • Windows Live
  • Visual C#
  • Microsoft ISV
  • Visual C++
  • Architecture
  • Visual Studio
  • VS Team System
  • Visual FoxPro
  • Smart Device
  • Windows Forms
  • VS Express Editions
  • SQL Server
  • Visual J#

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

Rebecca23

Member List

AvengerDr
Philippe.Jung
Kype
zhongzhong
Pictor
Rekhender
Egypt Develover
LeeFbx
windblower6
uasking
DRooD
ddwinter
Wawan K.
Hari M
DeBiese
Teknologik
Henri De Veene
Kache4
Al Hancq
BabuMan
Only Title

Rebecca23's Q&A profile

  • .NET Development Error when executing Process.Start() when running under SYSTEM account.

    I have an ASP.Net page using the System.Diagnostics.Process class to execute an Excel file with no arguments, I/O redirection, or direct impersonation. I have setup the web app to run under the SYSTEM (Local System) account via an Application Pool in IIS 6.0. The Excel file has a macro that will run automatically when opened. The web page is actually going to start a ProComm session, executing a script, to telnet to various telcom exuipment and gather info then call. Once the ProComm script has gathered all info it calls the same Excel file. The ASP.Net page needs to run under the SYSTEM account to allow the ProComm process to interact with ...Show All

  • SQL Server making two sums in one query

    Hi Im new in this forum so don't if this is the right place to post these kind of questions.. Im using vb2005 and have made a program that deals with customers and payments. I have a table called acount. Roughly it contains these columns Number, amount, type.. type can be a payment or a charge I would like to have a query that gives me this result: Number, sum(payments), sum(charges) (grouped by number) I think it is some type of merging these to querys select number, sum(amount) where type = 0 group by number and select number, sum(amount) where type <> 0 group by number Im using it to calc ...Show All

  • Visual C++ Child dialog of a dialog app - why won't focus pass and why are they not talking??

       This is so simple yet is driving me crazy. All I want to do is to open a child dialog from within a dialog based app, enter some figures into the child, total them and pass the total back to the parent dialog. I can get the child dialog to appear, but can't get it to total or pass back to the parent. Any help would be much appreciated....... Apologies to mod if this is not the correct place to post.... This is a little short on details for anyone to really take a stab at helping you. Can you add what exactly you tried and in exactly which way it failed A small repro case would be great. ...Show All

  • Visual Studio 2008 (Pre-release) I love DLinq. Really need n-tier support though.

    In section 7.4 of the DLinq guide it mentions that that's something you guys are looking at. Do you guys have an idea if that functionality will get in there before the product is given the green light to go-live Since most apps these days are designed as SOA, there will need to be a distributed notification mechanism. Thanks CZ The type of n-tier support we have for DLinq is simply an API that allows you to introduce objects to a new context after they have been round-tripped across the tiers. You still have to move the objects or data across the tiers yourself, and you have to figure out how to squirrel aw ...Show All

  • Visual Studio Express Editions Visual Basic Install Error - Document Explorer "Unknown Error"

    Hello. I have tried installing Visual Basic Express Beta 2 numerous times (I have removed all the programs from the Beta 1 version), and the Install does complete, but two error messages appear during setup, both with the text "Unknown Error." (no error numbers; the first is titled "Microsoft Document Explorer" and the second is titled "Microsoft Visual Basic Express Edition Beta 2"), which the installer seems to take no notice of. The same message appears when trying to launch Visual Basic Express Beta 2 (only one error, with the title being "Microsoft Visual Basic Express Edition Beta 2", like the second error encountered during ...Show All

  • Windows Forms Odd ComboBox behaviour

    Hi, I'm getting a strange behaviour with a ComboBox control, I'll try to make the situation clear: I have a DataTable, wich is correctly filled by a SqlDataAdapter, used as DataSource for my ComboBox. I correctly set the DisplayMember and ValueMember properties and the ComboBox displays and it also returns the correct value after the user has clicked on it. The problem lies here: I need to set the SelectedValue property before the user can do any interaction (I have to display a specific name) but before the ComboBox has been clicked, no matter what I do, the SelectedValue has always a null value!!! I even tried something like: c ...Show All

  • Visual Basic Monthly Payment Formula

     I am trying to find the formula for calculating the munthly payment for a auto loan and a home mortgage. This is what I have for a car loan, but it doesn't give the correct answer; Private Sub btnCalculate_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles   _ btnCalculate.Click Dim Principal As String Dim intRate As Decimal Dim Months As Integer Dim Pmt As String Principal = txtLoanAmount.Text intRate = txtRate.Text Months = txtMonths.Text Pmt = (Principal * (intRate / 12)) / (((1 + (intRate / 12)) ^ Months) - 1) txtPmtAmount.Text ...Show All

  • Visual Studio Team System Unit Tests and Nightly Build

    Using VSTS for Developers. I have a solution with a test project for my unit tests. When I create a new build type and select the metadata file, (".vsmdi") the "Test list to run:" list is always empty. The only mention that I can find about test list says to create them within test manager. But I do not see a test manager tool within VSTS for Developers. Does anyone have some insight into getting my unit tests to run during the nightly build Thanks You might find this post helpful... http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=129079&SiteID=1 ...Show All

  • Visual Studio Express Editions GroupBox

    Hello to everybody! I want to add a groupbox to my windows form. How should I do this I did nothing. I only added a definition to class. The designer does the same. But, I think, it adds additional code about controls place, and I don't know what code it is. ...Show All

  • Smart Device Development ArrayList overwriting values when add elements

    Every time I add an element to my ArrayList it, it adds the element but also overwrites the values added previously. Here's my code: while (drdrDataReader.Read()) { item.Item._ID = drdrDataReader.GetString(0); item.Picture = drdrDataReader.GetString(1); alItemList.Add(item); } drdrDataStream.Close(); Is there something I'm missing You are adding the same item over and over again. You need to create a new item for each read: while (drdrDataReader.Read()) { item = new Item(); it ...Show All

  • Windows Forms datagridtablestyles

    Good Day to you. :) I have a datagrid and 3 different datagrid styles that I would like to use depending on which button is clicked. It all works fine except when I click on a button that has already been clicked on. From there an error is raised that states the style is already loaded. How can this be  Isn't the style overwritten when&n ...Show All

  • Windows Forms Could not find file C:\Inetpub... GescomCustomActionInstaller.InstallState

    Hello I am trying to make custom actions to install the database and I have this. Is there a way to debug an installer step by step public override void Install(System.Collections. IDictionary stateSaver) { base .Install (stateSaver); string databaseserver=Context.Parameters[ "databaseServer" ]; string databaseuser=Context.Parameters[ "username" ]; string databasepassword=Context.Parameters[ "userpass" ]; string strsqlconn= "server=" + databaseserver + ";database=" + databaseuser + ";User ID=" + databaseuser + ";Password=& ...Show All

  • Visual Studio Team System Reporting Services failure

    I am on TFS Beta 3, and haven't used the reporting stuff much (I did get it up and running after install). Just went to run a report and got the following: An error has occurred during report processing. (rsProcessingAborted) Could not load file or assembly 'Microsoft.ReportingServices.Modeling' or one of its dependencies. Strong name signature could not be verified. The assembly may have been tampered with, or it was delay signed but not fully signed with the correct private key. (Exception from HRESULT: 0x80131045) Any idea what it could be I'm the administrator on the machine (ran it on the TFS server machine in order to get the ...Show All

  • Visual Studio Team System MSProject Fields Mapping Problem

    Hi, Based on the information we found from the list of Project fields at the following url: http://msdn2.microsoft.com/en-us/library/ms181691.aspx and also how to: change how fields are mapped to Microsoft Project from the following url: http://msdn2.microsoft.com/en-us/library/ms181686(VS.80).aspx We are trying to map the "Description" field in VSTS workitems with the "pjTaskNotes" field in MS Project but when we uploaded this modified MyProjFieldsMapping.xml file in to Team Project we are getting following error: TF82024: The following fields could not be mapped because the fields could not be fo ...Show All

  • SQL Server VB2005 Express ED. can't Connect to SQL WorkGroup ED.

    morning, I have just created my Company Database, now i'm developping an application for this, but i can't continue because i can't connect my VB 2005 Express Edition to my SQL Server 2005 WorkgroupEdition, when in VB 2005 Express Edition i'm trying to add a Data connection to my Database file.mdf, - Datasource : Microsoft SQL Server Database File - Dataprovider: .NET Framework Dataprovider for SQL Server and The Log on information is exact. I got the following error message......... An error has occured while establishing a connection to the server. when connecting to SQL Server 2005. This faillur ...Show All

©2008 Software Development Network