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

Software Development Network >> Bob Glassley's Q&A profile

Bob Glassley

Member List

Faisal Abid
Tim Parker
rnaumann
Jamesraj
RCQwerty
Ankit Singla
Nigel Watling
Jayden CHan
Guillaume R.
CoastalData
Mike Stall - MSFT
Michael Soolkin
Juan Pane
N30
Simon.kx
CelsoJP
Sjako
aloysiusf
Jan_Alexander
Svat
Only Title

Bob Glassley's Q&A profile

  • Visual Studio Team System Data binding in load test

    I have a web test, which has binded fields to a datasource. I added the web test into a load test. How can we control the number of iterations for the web test and how its execution depends on the data from the data source. In testrunconfig I have selected Fixed run count to 1 still in the load test I see web test that fail becouse they are using different rows from the datasource. How are the data binding iterations controlled for a web test Thanks, Martin Kulov http://www.codeattest.com/blogs/martin Martin, Unfortunately you can not just specify the number of iterations for a web test under load. Checkout this post an ...Show All

  • SQL Server Install RS with SSL handled in firewall

    Hi, We are trying to install RS in an unusual environment.  The Web server's SSL and public IP address are installed in the firewall.  The communications between Web server and other servers such as database server are not encrypted; all the servers have no public IP addresses. My question is if RS can be installed and if it will work properly.  Any other advice Thanks Yes - we call this SSL Offloading. With SQL Server 2005 Reporting Services, things should just work with the exception of the following: 1) Report Builder - it requires a direct connection to the report server to downloa ...Show All

  • Visual Studio 2008 (Pre-release) i need to download latest makecert.exe & certmgr

    hi there, i dont have makecert.exe in my system can sombody point me to a location so that i can download one.  just the makecert.exe. and certmgr.exe my internet connection is slow so.... thanks prasanth These are present as a part of the platform SDK Tool, also if you have visual studio 2005 you can find it here. C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin ...Show All

  • Microsoft ISV Community Center Forums Does KeyPress event trap "Backspace" key?

    according to VBA-Help KeyPress event can occur when BACKSPACE key is pressed. but it doesn't occur in my code. why can it happen Code is following: Private Sub TextBox1_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger)   Select Case KeyAscii       Case 8         MsgBox KeyAscii       Case 27         MsgBox KeyAscii       Case Asc("1") To Asc("9")         MsgBox KeyAscii       Case Else    ...Show All

  • Visual C++ I have a problem with SetDlgItemInt

    int a; void CCALCULATOR01Dlg::OnBnClickedButton1() { // TODO: Add your control notification handler code here GetDlgItemInt(IDC_EDIT1, &a ,TRUE); SetDlgItemInt(IDC_EDIT2, a ,TRUE); } In VC++ When i compile it 1>------ Build started: Project: CALCULATOR01, Configuration: Debug Win32 ------ 1>Compiling... 1>CALCULATOR01Dlg.cpp 1>Linking... 1>Embedding manifest... 1>Build log was saved at "file://d:\Work Sheet\CALCULATOR01\CALCULATOR01\Debug\BuildLog.htm" 1>CALCULATOR01 - 0 error(s), 0 warning(s) ========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 s ...Show All

  • Windows Forms How to always scroll to the last line in a textBox

    Hi, I have a textbox that has data added to it once every now and then. After a while the textbox contains so much data that a scrollbar is shown. However I would like it to automatically scoll to the last entered item. How could I do that Thnx Matt, that works! Regards Kapalic ...Show All

  • Visual Studio Team System Team project craetion failed

    I'm getting following error when creating new team project. 08.04.2005 12:35:00.212 | Module: ELeadServiceMediator | URL for eLead web service retrieved as " http://wser01:8080/bisserver/EleadWebService.asmx " from the registration service | Completion time: 0 seconds 08.04.2005 12:35:00.212 | Module: ELeadServiceMediator | eLead web service proxy constructed | Completion time: 0 seconds 08.04.2005 12:35:02.104 | Module: ELeadServiceMediator | Template Information for domain "wser01" retrieved from eLead web service | Completion time: 1,8927216 seconds 08.04.2005 12:35:11.398 | Module: Engine | Retrieved IAuthorizationService proxy | Complet ...Show All

  • Visual FoxPro Visual Foxpro Book Recommendations?

    All, Can anyone recommend a good book for learning VFP 6.0 from scratch   I've looked at SPECIAL ADDITION USING VISUAL FOXPRO 6 but it's not really helping me so far.  All I am trying to do is create a simple .exe that will read amd update some records from a .dbf and insert those records into a MS SQL table.  All the books on Amazon have gotten terrible reviews and MSDN has little to no info on doing this.  I don't need any forms or reports as the .exe I want to build would act more like a trigger than anything else.  Even a simple tutorial on this would probably suffice if I ...Show All

  • Visual Studio 2008 (Pre-release) Looking for a XAML sample that uses UniformGrid

    Does anyone have any sample code that uses a UniformGrid element in XAML For example, a UniformGrid with 2 rows and 2 columns with each cell holding a control, eg a button. Thanks. Pete Blois has an excellent example of using it for Tiling elements in his Minesweeper game (I think it has not been ported to the Jan CTP of WPF, but it should help): http://blois.us/blog/2005_09_01_houseomirrors_archive.html Also, you could use Expression Interactive Designer to play with the it and view the markup. Thanks, Unni ...Show All

  • Windows Forms SelectedValue DGVComboBoxCell??

    Hi! please help me, how can i select a value in a datagridviewcomboboxcell i'm using a dataset as datasource . . ex combobox contains: Display member        Value member       ABC                         1       BCA                         2       CAB       &nbs ...Show All

  • Visual Studio Tools for Office Do I have VSTO?

    Hi, This is probably a silly question, but I've searched around and haven't been able to find an answer. I have both Visual Studio 2003 standard and Visual Studio 2005 pro (on separate computers). Does that mean that I already have VSTO (I haven't been able to find any evidence of it), or is it something I need to get separately If so, how do I get it (and would there be any discounts available since I already have Visual Studio as well as Office 2003 Pro) Any resources that anyone can recommend would be greatly appreciated. Thanks, Dave Unfortunately, I beleive the MSDN Professional subscription ...Show All

  • Visual Studio Express Editions MDI Parent Form Events

    Hi. How can i raise a mousemove event on a MDI Parent Form ! On a normal form (Not mdi container) it just works fine but on a MDI it dosen't work for me.   Here it is a simple code that demonstrates that the mousemove event dosen't work. Public Class Form1 Private counter As Integer = 0 Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load Me .IsMdiContainer = True Me .WindowState = FormWindowState.Maximized ProgressBar1.Value = 100 Timer1.Interval = 1000 Timer1.Start() End Sub Private Sub Timer1_Tick( ByVal send ...Show All

  • .NET Development .NET Framework 2.0 question

    I appologize in advance if some of my  questions to the forum is a little out of place. I am not a programmer or developer, just a gamer, system builder, and network administrator of a home network. After installing .NET Framework 2.0, Direct X9.0c's Diagnostic shows that one of the two system.dll files is missing. The one that is listed belongs to 1.1, so logic dictates that it is the one for 2.0 that is missing. However it is in the .NET 2.0 folder! Some other symptoms are that logging into .NET sites must be done manually (being signed in with MSN Messenger does no good), and Auto-Scroll function for IntelliPoint 5.2 does no ...Show All

  • Visual C++ Is there any thing equivalent to NotOverridable in C++?

    Hi guys, My problem is this. class Base {    public:        void  OneFunction()       {           cout<<"Base";         } }; class Derived:public Base {    public:              //overriden, I don't want this to happen.        void OneFunction()       {          cout<<"Base cl ...Show All

  • SQL Server Is SQL Server 2005 still using Named Pipes ?

    I keep getting errors.  It all started when I enabled named pipes on my SQL Server 2005 server.  Ever since then I've had connection problems up the butt. Most recently I got this error so does this mean that SQL Server is still trying to use named pipes even if I only have TCP/IP enabled in SQL Server Configuration Manager Error: TITLE: Connect to Server ------------------------------ Cannot connect to BG-SQL2005. ------------------------------ ADDITIONAL INFORMATION: An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be caused by the fa ...Show All

©2008 Software Development Network