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

Software Development Network >> Much Less Annoyed's Q&A profile

Much Less Annoyed

Member List

A.Kahn
maestro49m
msj3990
KenRumble
Chris Vance
DeepakRam
UKChap
Stephen Castle
Miles Miller
Michela
donnyG
jbob
Prashant jain
ChuckBuc
DLivingston766
Prasad.k.
SnakeLair
Edamepsel
tex77
JPR7
Only Title

Much Less Annoyed's Q&A profile

  • SQL Server How to call Integration Services Project from Web UI

    I just got done finishing an Integration Services Project (which I have to say was sickening easy!) which does the following:  1) Imports a comma delimited txt file 2) Exports it into a table 3) I do some manipulation and other table creation using SQL 4) Outputs a table to a flat file again I now need to allow the user to run this process.  I'd like to either: a) Provide them a shortcut that when clicked on their des ...Show All

  • Visual C# Change label text during run ?

    I have several labels on my form and I am able to change the text in each one when the situation arises. For instance the user is able to select an input text file using the Open File Dialog and when they press the OK button, the file path selected will display in a label. However, when the application starts to process the file, I want the record count to display in a label that resides in a Group Box located at the bottom of the form. ...Show All

  • Smart Device Development Strange problem on Pocket PC using VB.NET 2005

    Hi everyone, I'm new to VB.NET 2005 and have stumbled across a very strange problem for which I cannot find a solution for. I am literally pulling my hair out! I'm developing an application for the Pocket PC 2003. I have a form which uses a Port to read incoming data. The data is read at 1 second intervals using a Timer control. The data that is read is then updated in to fields and labels on the form. It all works great until I dis ...Show All

  • Software Development for Windows Vista Pointers on Fancifying the WorkflowView

    I've gone through the sample rehosting lab, and I get how the basics work to rehost the designer; however, I'm not clear (and can't seem to find much) on actually modifying the default L&F. I think I can use a WorkflowTheme to modify the colors and such, but what about changing what's actually displayed in the designer for an activity I'll keep digging, but I thought I'd ask here in case someone can point me in the right direction. I'm ...Show All

  • Visual C# Row Filter

    I wanna filter a dataview. The column which is used is password and the string contains ' sign. That's the problem. For example: [DataViewName].RowFilter = "'I ' mVerygOOd'" The ' makes ana error. What can I do That doesn't work or I have missunderstood. I tried it so: The password was c#'llCOMESOoN I typed c#\\'llCOMESOoN And got the error again! ...Show All

  • Windows Forms what is the right way to re-bind?

    Hi, All! I have something like following code that binds on form load.  txtAccount.DataBindings.Add _ ( New Binding("Text", dsAccount, "account.account")) Now, when I get another dataset, and want to re-bind it to the text box, I get this error saying cause two bindings to the same property.  How do I un-bind the first one and switch to the next one on the run time   Do I bring the new data into the exis ...Show All

  • Visual Studio Team System Error 32000 during Team Server install

       I installed the prerequisites: Sharepoint services, SQL Server 2005 CTP April on a new install of Windows 2003 Server Standard SP1. Around 99% through the install I got a 32000 error. I am using the Virtual CD tool to access the ISO image downloaded from MSDN. The image is set as drive z I am logged in a TFSSetup user who is an administrator on the current box I assigned TFSService user as the service user (Both users are domain ...Show All

  • SQL Server BULK INSERT Format File Problems with SQLNUMERICAL in SQL-Server 2005 Express

    I'm trying to set up a BULK INSERT Format File for some data that I've been sent, which, according to the data documentation, comes in fixed-width format fields (no delimiters except for end-of-row 0D0A) in SQL-Server 2005 Express. The following is the first line... "7999163 09182003 56586 56477 3601942 1278 22139 1102 113 118 51450 1 1 63535647 10000 7999162 09182003 56586 56477 3601942 1279 22139 ...Show All

  • SQL Server Send Mail Task Error

    Hi, I am using a foreach loop with a sql query to generate numerous rows of information. I am in turn taking each row and placing the information into an Excel SpreadSheed. The problem seems to be that when I am using a Send Mail Task and have the Excel sheet as an attachment, I cant delete it when necessary. If the process is running inside my loop and the Excel sheet is attached, I can't delete the file using the File System Task or I get ...Show All

  • .NET Development Event subscription model

    Hi, I've been struggling with the following scenario for a while and have yet to find a good solution for it, so maybe someone give me some hints: I have a component that retrieves financial market data, let's call it FMD. All the data comes in at one method and gets published via the NewData event. I have several subscribers to this NewData event, let's say S1, S2, S3. Every subscriber sends a request to the FMD, telling him to get data for a c ...Show All

  • Visual Studio Team System State&Reason fields

    hi, i am trying to populate my drop-down boxes on the web interface with the correct fields i.e. state - active,resolved, closed, reason-... the state and reason fields are linked in team system, is there a way to call any methods to populate the drop-down boxes with what it should be, or do i need to manually code all field values and link them thanks, Daz If you are using the Work Item Tracking APIs, ...Show All

  • Visual C++ installer

    I have made a little application in visual C++ 2005 beta 2, and I want to use it on other computers, where visual C++ isn't installed. how can I make an installer of my application The way it used to be done in previous versions of visual studio don't seem to be implemented anymore. You can use WIX ( http://sourceforge.net/projects/wix/ ).  It lets you author setup programs in XML and is relatively easy to u ...Show All

  • Visual Studio Crystal Reports XI Release 2 Merge Modules are Out

    Hello all Well I have been waiting for ever for the merge modules. http://support.businessobjects.com/fix/merge_modules.asp Merge Modules for Crystal Reports XI Release 2 .NET Deployments - This file contains the merge modules required for deploying applications using Crystal Reports XI Release 2 for Visual Studio .NET. Merge Modules for Crystal Reports XI Release 2 RDC Deployments - This file contains the merge modules required for ...Show All

  • Windows Forms Customizing TableLayoutPanelDesigner

    Hello, I'm developing a custom control that is to be used in a custom forms designer that I created. The control should have exactly two cells behaving like cells in a TableLayoutPanel, so I thought I'd build my control as an extension to TableLayoutPanel. Now I need to customize its designer, since I do not need all the design-time options that TableLayoutPanelDesigner offers. Problem is: TableLayoutPanelDesigner is an internal class, and ...Show All

  • Windows Forms Clear a DataSource, of a List-Bound Control

    How  change the dataSource of a ListBox If I put  this: lstAlumno.DataSource = null; Show me, error... how I could change the DataSource ... Again, please post specific error messages.... this helps a lot in determining what is wrong. It would  ...Show All

©2008 Software Development Network

powered by phorum