flyfisher1952's Q&A profile
Visual Studio Team System Agent Controller Supported configurations
I am preparing to set up a rig. I cannot exactly match any of the recommended configurations, but I can come close to " Alternative Configuration 2 " as shown below. Will this work (It will be nice to find out before I install everything.) · Computer 1: Visual Studio plus web server against which load tests are conducted. · Computer 2 (WinXP SP2 laptop Celeron 2.4GHz, 448 MB RAM): Controller, (not sure if it is advisable to run an Agent too ) · Computer 3 (Win2k Pro, Pentium 4, ...Show All
Visual Studio Express Editions Send information to mail
What can i do if i want some information sent to my mail My code : Public Class Form1 Private Sub TextBox1_TextChanged( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged End Sub Private Sub Label1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label1.Click End Sub Private Sub Label2_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label2.Click End Sub Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load ...Show All
SQL Server Transmission Queue problem
" noWrap width="1%" bgColor=#b71c0c> 1. Yosi 29 Temmuz 12:19 secenekleri goster Gonderen: "Yosi" <yus ... @bizitek.com> - Bu yazar n yazd mesajlar bul Tarih: Fri, 29 Jul 2005 02:19:00 -0700 Konu: Service Broker Cevapla | Yazara Cevap Ver | let | Yazd r | Sadece Mesaj | Asl n goster | Kald r | Kotuye Kullan m Bildir I'm trying the service broker features of SQL Server 2005. I created a queue, a writer service and a reader service. I'm inserting a message to the queue by running the following command declare @dh uniqueidentifier; begin transaction; ...Show All
Visual Basic how to Count the filled rows in the DataGrid
Hi, Please can some one help me to know "How many rows are the datagrid filled with " Thanks a lot Use the .rowcount property of the datagrid or the .count property of the datasource of the datagrid ...Show All
Windows Forms loading a ".raw" format into a Bitmap object
I have image files that were given to me in a ".raw" format. Can someone suggest a way I can read this file format into a Bitmap object in my C# application thanks Bryan using System.IO; using System.Drawing.Imaging; /*..........*/ //Button1 on Windows Form. private void button1_Click(object sender, System.EventArgs e) { OpenFileDialog dlg = new OpenFileDialog(); if (& ...Show All
.NET Development Asynchronous calls
Hi! I am using .Net version 1.1 I have some doubts regarding asynchronous function calls in .Net. 1) When I make an asynchronous call, does a back ground thread start which executes the method that has been called asynchronously 2) If so, if I make multiple asynchronous calls to the same function with different parameters and if the function is accessing a shared resource (say a disk file) should I make explicit arrangements (like lock) to prevent race conditions 3) What happens if an exception is thrown in an asynchronous call 4) What happens if I forget to call the EndInvoke() method I would be very much grateful&nbs ...Show All
SQL Server Works fine inside BI Dev. Studio, but fails when scheduling it in SQL server 2005.
Hi! We are currently developing a project in SQLIS using the BI dev. studio. The package executes with no problems in the development environment, but when I try to deploy it and execute it using the SQL Server Agent, the package fails. "Work flow" ----------- 01. Build a package deployment utility (Rebuild all). 02. Runs the deplotment utility. 03. Checks that the latest package has been installed. 04. Creates a new job in SQL Server, using the SQL Server Agent. 05. Adds a new step to the job. 06. Sets that it is a DTS package that should be run ("file-based") 07. Sets the location of the package. 08. Saves the job. 09. Starts t ...Show All
Smart Device Development A multithreading question
Hi there, I'm using a printer dll (PrintCE.dll) to print into a mobile printer I have via bluetooth. Now everything worked well until I wanted to have a nice error message (and a quick one) if the terminal can't connect to the printer (if it's offline for example), What happens today is that it takes more than 60 seconds until it finally give up the try and gives the error. so what i've done is i've put the start printing procedure in a difrent function, and called it via a new thread like this: ThreadStart job = new ThreadStart (StartPage); Thread thread = new Thread (job); thread.Start(); Thread .Sle ...Show All
Visual C++ Singular preprocessor definition needed
This is my first post, I hope to be clear enough (sorry for my eglish) and I hope to be lucky and find the answer to a very big problem. I have a VC++ project and I need to create, during the compilation, a define that has the same name of the file that I am currently compiling. For example, if when I am compiling a file called Main.c I need to create runtime a define #define main 1 I do this by specifying the in Preprocessor Definitions section $(InputName)=1 The problem is that the command above create a define #define Main 1 instead I need the name of the file in lower case . I thought in the beginning to create a custom task in M ...Show All
Visual Studio Express Editions Windows Forms Control Library
Although not new to C++ I'm looking recently into CLR and thus found my way to Visual C++ Express. To orientate myself with this edition, I briefly looked over some of the provided walkthroughs and found myself stuck. The Windows Forms Control Library is missing in the 'Visual Studio installed templates' pane. Windows Forms Application is available and operational. I do have the most recent x86 platform SDK installed and configured correctly. Something I've overlooked Cheers, Ulyses Thanks for the reply. I may well purchase at least the standard edition knowing this. I'm sure it'll be money well ...Show All
Game Technologies: DirectX, XNA, XACT, etc. How do I display Frames Per Second?
The subject says it all; how do I see what FPS my app is getting DirectX must be stashing that info somewhere! Every example I've seen requires working it out by using a timer and counting how many times a second the screen gets refreshed. But it's possible that it's sitting in there also, it's been a while since I did DX. ...Show All
Visual Studio Registering Visual Studio.net 2003
I just installed VS2003 Academic Version and when I clicked on the link to register my software I got the following message on the MS web site: We're Sorry...The page you are looking for no longer exists or may have been moved. I can't seem to find a registration page on the web site. Anyone know where it is Surely one must still be able to register this version since it's still being sold! Sacblonde I am having the same problem and can't seem to find any information on the topic. If you happen to get an answer or can direct me in the right direction I would appriciate it. ...Show All
Visual Studio Express Editions rich text box
Hi, I placed the rich text box,and i applied some font settings to the selected text of rich text box. Now to save the changes to a file i used the following statement richTextBox1.SelectionFont = new Font (fontname, fontsize, fstyle); richTextBox1.SaveFile(fn, RichTextBoxStreamType .RichText); where fn contains th filename. but now also the changes are not applied to the file. Please help me. hi, i have did it like this to change font property in the rtb select part of the text and click on this button private void btnbold_Click(object sender, EventArgs e) { Font ...Show All
Visual Studio 2008 (Pre-release) Binding a WrapPanel's ItemWidth to a Grid's Column width ...
I'm trying to use a WrapPanel as the ItemsHost for a ListBox. This works fine, but I'd like to bind the width of the WrapPanel's items (ItemWidth) to the width of a column in a Grid that contains the WrapPanel. I'm not sure if this is possible, or if I've gotten the data binding syntax incorrect. It's not working for me. Can anyone help Here's the XAML: < ControlTemplate x:Key = " ListBoxControlTemplate " TargetType = " {x:Type ListBox} " > < Border CornerRadius = " 2 " BorderBrush = " Gray " BorderThickness = " 1 " > < Grid > < Grid.ColumnDefinitio ...Show All
Smart Device Development Datagrid Cell Alignment
HI All, I am working on one project where i have used the DataGrid and i am showing some data in it from different tables. so i am not able to show that data in proper format or in cell alignment like i want to show the Price value in Right alignment Pl help Thanks NETCF's DataGrid does not support formatting and/or alignment, sorry If it's required, please consider using 3rd party grid like controls. ...Show All
