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

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

Mutt10R

Member List

lampher
Edman Zayzay
Rob26354
Zappos
SeanCo
phillihp
gps
Mechamonkey
pehaada
Cent
freggel
Jphillips59
-fej-
LadyASPX
Scott Thurlow
Drake_beh
LabibaSeif
orcrist4
Keith D
Larry Surat
Only Title

Mutt10R's Q&A profile

  • Visual C++ chekbox

    how can i determinete when the check box in listview is checked or when the checkbox is get the focus and chenge on evey check in MFC There are events for all of these which you can catch and then run your own code. I believe WM_FOCUS is the event when a control gets the focus ( this is relying on old memories, don't quote me ), and I'm pretty sure there's a SetCheck method on the control you could call to check it when it gets the focus. ...Show All

  • .NET Development SQL/ADOConnection Pooling- Lifetime question

    We know SQL connection lifetime is 60 seconds for idle connections. If I set the lifetime of my ADO.NET connection object to 500 seconds. And the connection sits idle in the pool for say 150 seconds. Will SQL shuts down its side of the connection If yes, well, that's easy I will know that the ADO.NET is dead from the exception thrown next time i use it. If not how does ADO.NET overrides the SQL side lifetime limit Am I making sense or am I connecting too totally different concepts Thank you   msdnjw wrote: We know SQL connection lifetime is 60 seconds for idle connections. If I set the ...Show All

  • Visual Basic How can I, if at all possoble, create an FTP Server

    I'm a beginning developer and i need to create an FTP server imbedded in an application. This is the last thing i need to do to finish the program. I need to make it so the server is only available when the application is running. Are you shure you need a server and not a client Anways this is what I found after a quick search on the internet: http://www.mabry.com/mabry.net.ftpserver/ ...Show All

  • Windows Forms Delay display of initial form

    My application does a lot of set up stuff that needs to happen before the main form is displayed. I would like have this initialization happen in the background and not display the main form until this initialization is complete. During the initialization a status form would be shown to let the user know about the progress as the application loads.&nbs ...Show All

  • Visual Basic creating a text object

    Is there a way to create a text object By putting [ and ] you can escape the name between them. In this case, since string is a built in keyword in Visual Basic .NET, the compiler would have treated it as the keyword string instead of the type name String. In this particular case (assuming that you are Importing the System namespace) they just happen to mean the same thing (a string in Visual Basic maps to the System.String class in the .NET framework. For a more informative example, see: http://msdn.microsoft.com/library/default.asp url=/library/en-us/vbls7/html/vblrfvbspec2_2.asp Best regards ...Show All

  • Visual Studio Team System Event Viewer Strange Event

    Hi There! I was taking a walk through event viewer and noticed this <Information > message: Process Details: Process Name: w3wp Process Id: 1888 Thread Id: 4500 Account name: VISABEIRA\tfsservice Detailed Message: Unable to obtain registration data for application VersionControl. Exception Message: TF30055: Visual Studio could not find or read the Team Foundation Server server name in the configuration file. Contact your Team Foundation Server administrator. (type VstfNotConfiguredException) Is this an error BisDomainUrl is the right name for Beta 3 Refresh. It has been ...Show All

  • Visual C# Asynchronous Sockets - BeginAccept

    Im having some trouble with BeginAccept... each delegate runs for a while (Transfers data) and more than 2 delegates cannot run together, it quees the others automaticly, can I somehow change this default value of 2 It could be that the ThreadPool is full so it the execution what for a available thread. You should not use the ThreadPool, you use this now because you use the Begin* methods, for long operations. Accepting a socket can be a long operation because it can take a long time because no sockets are connecting. You can do the accepting logic in a other thread that you'll manage yourself instead of usi ...Show All

  • Visual C++ VC++ 2005 Toolbars

    Is there a way of getting the office 2003 style toolbars in VC++ 2005 I know they are available in C# and VB 2005,  but VC++ has the old style office 2000 toolbars. Any suggestions Thanks, Paul A new app In that case I recommend doing this in C++/CLI (that is, unless you're an MFC guru who knows how to create asynchronous databound custom skinned controls blindfolded). There shouldn't be any troubles building the 3rd party libraries with the /clr switch set (if they compiled in native C++, they will compile with the .NET framework). You can probably get away with creating a . ...Show All

  • Visual Studio Express Editions How to turn off redrawing?

    Hi! I would like to turn of redrawing of richtextbox while procesing text inside it. I have found one solution, but I can't get it to work. c od e: SendMessage( new HandleRef( this, Handle ), WM_SETREDRAW, 0, 0 ); Error Message I get: The name 'SendMessage' does not exist in the current context Perhaps I misunderstand. Can't you just use SuspendLayout while you're processing the text and then ResumeLayout when you're finished ...Show All

  • Visual Studio Team System VS Team for Testers

    What does this package exactly What does Manuel Testing mean  Can we make  automatic scripts  as in Visual Test If not are there plug ins installed to have same the functionality as VT Regards, What does Manuel Testing mean  A manual test is a test for which there is no automation. Instead, test steps are outlined in a document for the tester to complete. The tester can then report test results and submit bugs as appropriate. ...Show All

  • Visual C# Inserting ComboBoxes in a DataGrid with specific items in each row

    Hi, I need to know How can I fill a DataGrid , that contains controls like ComboBox , row by row instead of using : tableStyle.GridColumnStyles.Add(...); Since I need to fill the comboBox control of each row with different items. I have wrote the follwing code but the result is empty cells in the column that expected to be ComboBoxes !!. //*************************** DataSet myDataSet = new DataSet (); //Tags Table with comboBox DataTable tagsTableComboBox = myDataSet.Tables.Add( "Tags Table with ComboBox" ); DataColumn tagID_cb = tagsTableComboBox.Columns.Add( "tag_id" , typ ...Show All

  • Microsoft ISV Community Center Forums xp style to vba forms

    hi, i would like to apply the xp theme to my msforms in (excel) vba.  i have not been able to find any information on doing this.  i saw this done in a stand alone xla so i know it works.  any help would be greatly appreciated. -b Per the support engineer: On my side, it is also the same. The reason is that, to  display XP style 1. The display properties on Windows system need to be set as Windows XP theme and 2. The application uses common control 6.0 However, in VBA and VBE design environment, the default controls are forms control (we can right click on ...Show All

  • SQL Server Header on Matrix Rows

    Is there any way to add a header to a Matrix row in RS SP2 Much like a header for fields in a table. I have multiple row groups in my matrix and want to label them so as to avoid confusion. However, I haven't had much luck in finding a way to do this. What I have looks like this: Tasks, Users, Billing 01 Jan 2005 Time External Billing (£) 1 to 1 2       SubTotal 5.25 270.00 6.2       SubTotal 1.50 0.00 10 South Way 1       SubTotal 3.50 245.00 106 Wetherby Road (Ian Mcleod) CS0344       SubTota ...Show All

  • Windows Forms C# ArrayList to capture selected items in a listbox

    I have a listbox popluated from a dataview. The user can selecte multiple items but I'm having trouble saving each selected item in an Array List. I have a method to fill the listbox: DataView dv = new DataView(SqlHelper.ExecuteDataset(cnIPDAdmin, CommandType.StoredProcedure, "gsp_GetCust").Tables[0]); lbxCust.DataSource = dv; lbxCust.DisplayMember = "CustomerName";   lbxCust.ValueMember = "CustomerID ...Show All

  • .NET Development Error using SqlDataSource on ASP.NET 2.0 Page when using Oracle VarChar2 input variable

    Attempting to use a SqlDataSource to access data from an Oracle8i table. Everything works great with an integer based parameter, but errors on a varchar2 based input parameter. That is, no problem with Inteteger Input: < asp : SqlDataSource ID ="SqlDataSource1" runat ="server" ConnectionString =" <%$ ConnectionStrings:ConnectionString %> " ProviderName =" <%$ ConnectionStrings:ConnectionString.ProviderName %> " SelectCommand ="SELECT DISPOSED, READYFORDISPOSAL, LAB# FROM SAMPLES WHERE (LIMS# = :LIMSNO)"> < SelectParameters > < asp : Parameter Name =&quo ...Show All

©2008 Software Development Network