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

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

briane

Member List

Sunkakangi
stratos13
Maarten Zaagman
Keyur
Nobody you know
krycek
Sino-Gary
KennyLee
Odair
rebird
Zahid Aziz
MartinGleeson
Mirsad
dslaby
Monique555
Mister3957
Valentin56055
Tom Stewart
Chaitanya Tyagi
deezer
Only Title

briane's Q&A profile

  • SQL Server Set log message within script task

    I have a script task in my control flow that does some validation checking. If one of those checks fails, I want to fail the task and send an appropriate message via email. I've accomplished this by updating a package that is then used as the source for the email message. However I also want my message text to appear in the package ...Log.xml file. Currently it only says that the script task returned a failure result. There must be some way to do this, and I hope some guru out there can help me. Thanks, Phil Perfect Doug - thanks. I too was stumped as to where I could find 'ScriptTaskLogEntry'. After reading ...Show All

  • .NET Development Match between keywords

    I have little familiarity with RegEx and I am sure that it would be easier to write some regex stuff than parsing out a string. I have some strings that are in the form of "{3:2}" or even "{3:2} OR {3:48}" or the OR could be an AND.  So I need to pass a parameter of 3 and for the first expression get a 2 in return in the latter case I would expect a return of "2 OR 48" Thanks There's a program called Expresso, which you can download here : http://www.codeproject.com/dotnet/Expresso.asp It makes it really easy to develop regular expressions In this case one solution, which could probably use some work, ...Show All

  • Visual C++ This application has failed to start because the application configuration is incorrect

    Hi, I am just starting programming using Visual C++ 2005 Express Edition. I have had some limited practice in other languages and older versions of C++, so I have some idea whats going on but not much... Anyway I made a short program which perfroms a bubble sort on an array of numbers which the user enters (I know its nothing to write home about but its a start), it works fine on my PC and when I sent it to a freind who also had VC++ 2005 Express Edition it worked fine for him. However I then sent it to a freind without it (in a fairly poor attempt to persuade him to download it) , and my program didn't work on his PC giving the error: ...Show All

  • SQL Server Hide "Show details" for the Role Browser

    How can we hide the "Show details" Button for the Browser Role Thanks Greets Markus Sure, it's right that the user cannot delete anything. But my Problem is that the customer can see reports that are hidden in the listview such as Supreports or anything elso which is needed for reports but the user don't need to see them. ...Show All

  • Microsoft ISV Community Center Forums How to open Access files and export them to Excel

    I need to open multiple Access files and export several colums to Excel. The problem is that the file extension is not a typical access one and that I need to choose a table from several tables for each file. Then I need to merge into one excel document. Any help would be appreciated, thanks. I'm sorry, I thought this was the VB.Net site. VB.NET. and I'm new to it... thanks. ...Show All

  • Software Development for Windows Vista SDK Problem

    I can't seem to instill the SDK Image on vista. Can you give more details Are you having problems burning the DVD or running the install ...Show All

  • Windows Forms Datagridview

    Hello I have made a text for a foreach loop. There I have looked to the row.Index behaviour When I have three items and AllowUserAddRows is thrue the index goes from 0 to 3. When AllowUserAddRows is false the index goes from 0 to 2 This means the empty row is taken with the validations in the foreach loop I think. Greeting. Dik, Yes, this is the correct behavior. There is a "virtual" row present when you can add rows to the grid. Erik ...Show All

  • Visual C++ Buildong problem

    Hi I have a program in C++ 6 and when I try to execute with C++ 2005 it I get this error: fatal error C1083: Cannot open include file: 'iostream.h': No such file or directory Fabricio11 wrote: Hi I have a program in C++ 6 and when I try to execute with C++ 2005 it I get this error: fatal error C1083: Cannot open include file: 'iostream.h': No such file or directory Using iostream.h is now obsolete. Do this instead :- #include <iostream> ...Show All

  • Smart Device Development Time span

    Hi, I need a help to calculate elapsed time (start time -end time). I used the following code in windows apps. it's Working perfectly. But, when i use the same in Pocket PC apps,getting some negative result. I've tested it in Pocket PC Emulator.(VS2003,.NET framework 1.1) Code: Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load ck = DateTime.Now Timer2.Enabled = True End Sub Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick Timer2.Enabled = False ck1 = DateTime.Now ck3 = ck1.Subtract(ck) Label5.Text ...Show All

  • .NET Development When to use TableAdapter.Update(DataTable) method?

    I'd like to know how can I use the TableAdapter.Update method so that I can update the database that I use whenever a user adds, modifies or deletes a row in a datagridview control. I suppose that I should handle the CurrentItemChanged event of the BindingSource that the DataGridView uses but I'd like to see a full example. In other words I'd like to create a WinForms application with a DataGridView that has the same capabilities as the DataGrid form for the Sql Tables in the Sql Server Management Studio. I know that it's a lot to ask but nevertheless this is something that is missing from the .NET Framework examples and walkthroughs. ...Show All

  • Visual C# Help with generics

    <Edited to make more sense> I want to call a static method from my class as follows: EntityViewFilter.ApplyFilterWith<FilterA>(tree, FilterAction.Exclude); Notice that 'FilterA' is being passed in as a generic type, and could just as easily be FilterB, FilterC, etc. Assume that FilterA (along with FilterB, FilterC, etc)  inherits a base class, called BaseFilter: public class BaseFilter {     abstract public static bool Include() } So that FilterA looks like this: public class FilterA : BaseFilter {     override public static bool Include() {        //this ...Show All

  • Software Development for Windows Vista Sound does not play when windows vista starts or is shut down

    I installed the beta 1. I do have a sound card which is working fine. However, when I start windows or shut down, the sounds associated with these events do not play. Has anyone else faced this issue Ashok Sorry, I typo'd the link; please try it again now. The newsgroup is microsoft.public.longhornhelp . ...Show All

  • Visual Basic How to dynamically change the fields on a form

    Hi, As I am about to develop an IT Asset Tracking system I wanted to know how to change fields on a form on the fly. For example, suppose I click on the Add New Asset button, the Add New Asset form will then appear. On this screen, I may have some selectable combos such as Item Type and Model. By default my item type will be Desktop PC and the fields for a desktop PC will be displayed for entry. After I save this and then decide to add another new asset and select Printer as my Item Type, how can I display the relevant fields for this item type on the same form. Do I need to create separate forms for each type of item or can I use o ...Show All

  • SQL Server Cannot create a order by view

    Hello, I am trying to create a simple view which uses self joins. I want the final result order by. I am able to create the view using Top clause followed by order by but when I simply query the view it does not appear in the correct order. Can some body help me with the issue. CREATE VIEW [dbo] . [vw_SalesRep_Chaining] AS SELECT Top 100 percent Rep_id AS RepId , Rep_cd AS RepCode , Region as Region , CASE WHEN Market IN ( 'Arizona - North' , 'Arizona - South' , 'Gtr TX / New Mexico' ) THEN 'Arizona / New Mexico' WHEN Market IN ( 'L.A. Metro - West' , 'L.A. Metro - North' , ...Show All

  • Windows Forms ParseException on manifest when installing ClickOnce App

    I get a ParseException on the manifest when installing ClickOnce App.  I can access the manifest just fine with a browser.  I have searched the forums and not found asolution to this. Any help is much appreciated.  Thanks, Rich PLATFORM VERSION INFO  Windows    : 5.1.2600.131072 (Win32NT)  Common Language Runtime  : 2.0.50727.42  System.Deployment.dll   : 2.0.50727.42 (RTM.050727-4200)  mscorwks.dll    : 2.0.50727.42 (RTM.050727-4200)  dfdll.dll    : 2.0.50727.42 (RTM.050727-4200)  dfshim.dll    : 2.0.50 ...Show All

©2008 Software Development Network