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

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

uzz

Member List

cada0310
Millen Tomov
daxu
Julie Knibbe
someoneontheinternet
smileshalini
mhams
Noam02
Stephen L
BillyB26
absolute_magic
digitalkhaos
bud68
rit
Shawnh
phirst
SiliconMage
travey12
Jim From Florida
alvinr
Only Title

uzz's Q&A profile

  • Windows Forms How to apply ColumnStyle and Alternating Row style

    I want to apply column style and alternating row style to my datagridview How should I do that Here's what I want to achieve: I have 3 columns. I want the first column to display its cells contents in bold. I also want to aply alternating row color to each row. Also, the Text should wrap in each of the cells. How should I achieve the above scenario Sorry for the delay in answering. If your problem still exists I can send you a sample app ...Show All

  • Visual Studio Team System Installing TFS on Windows Server 2003 R2

    First, is this supported Second, if so, what are the [Sharepoint Options] I should specify in R2 unattended setup to ensure a successful install of TFS I tried: [Sharepoint Options] Provision = No RemoteSql = Yes but TFS install failed with error "Server extensions administration port not found" - full log file available if needed. Hello Matthew, Didn't use unattended setup but I wa ...Show All

  • Windows Forms Force bound control to post value to DataSet?

    In my project, the previous author is trapping the SelectedIndexChanged event for a bound ComboBox control, and within that event handler, he's updating other items in the DataSet manually, which has the nefarious side effect of causing the bound control's&nb ...Show All

  • Visual Studio Tools for Office storing a variable(caching)

    i need to store one value in a counter variable in vsto excel appln which cannot be stored in database.when i close the appln and open it again it should hold the value(persist) how can i implement this in excel application If you declare the counter as a public member on your customization class and mark it with the Cached attribute then VSTO will save this value along with the document and reload it next t ...Show All

  • .NET Development System.IO.Compression not as good as compressed folder

    I'm getting much better compression when I make a compressed folder (Windows XP) than I am using DeflateStream or GZipStream.  I thought these were the same algorithms used in PKZIP and for compressing folders.  Why such bad compression DeflateStream: 3544Kb -> 1261Kb GZipStream: 3544Kb -> 1261Kb Windows XP: 3544Kb -> 804Kb So how can I get the same compression ratio as Windows XP Thanks, Jeremy ...Show All

  • .NET Development Setting function keys to perform action

    I don't know if this is the correct forum for this; I need a way to set an action(command line preferably) when a certain key is pressed. Basically I want to set one of the function keys to close IE.  I was planning on using taskkill from the command line. I have scripting experience, but not any MS scripting languages. Don't really know where to start. Thanks for any thoughts You can use WScript.StdIn.R ...Show All

  • Visual Studio Team System cluster server support for DT?

    subject says it all, I think.. Is there (currently or planned) cluster server support for the DT server   I want to say the data tier supports clustering, because that tier would just be SQL Server 2005.  So you should be able to use clustering like you always do.  I believe you have to have SQL Server 2005 Standard or higher. Rob Caron links to the Team System Licensing White Paper which also discusses this: http://blogs. ...Show All

  • .NET Development Webservice not returning results when dealing with large data

    I have an interesting situation. I have a webservice function that I pass a DataSet, do some inserts, then return the results as a dataset.  This works fine 99% of the time. However, when I send a large dataset to this function strange things happen.  On my 'client' end nothing happens - I have a Console.WriteLine right after the webservice call and it NEVER executes (nor does it error out). ex: webserviceRef.sendData(someDataSet); Con ...Show All

  • Visual Studio Team System Recording Cookies?

    Hi, Serveral promotional blurbs about VSTS web testing tools mention " automatic handling of cookies ." (e.g., http://msdn.microsoft.com/vstudio/teamsystem/products/test/ ) Yet when I use VSTS to record a web test, the cookie from the site I am testing does not get automatically recorded. What does "automatic handling of cookies" mean if it does not mean that they get recorded automatically Do I have to create a ...Show All

  • Visual Studio 2008 (Pre-release) How do I handle a click event for a button in a ControlTemplate?

    I have a ControlTemplate that consists of a horizontal StackPanel with a TextBlock and a Button: < Style x:Key = " MyStyle " TargetType = " {x:Type ContentControl} " > < Setter Property = " Template " > < Setter.Value > < ControlTemplate > < StackPanel Orientation = " Horizontal " Margin = " 1,0,1,0 " > < TextBlock VerticalAlignment = " Center " Margin = " 3 " > < Cont ...Show All

  • Visual Basic Playing a sound file

    This may have been answered before i am not sure, i am running Visual Studio 2005 beta, i would like to know how i can play a sound file in the background when someone opens a form. Any ideas I am using the my.computer.audio.play function to play an alert. The alert is the result of checking a database for new entries every 10 seconds. If there is a new entry that the software has not seen yet, it uses the VBPower Tools Notificati ...Show All

  • Visual C++ CString assignment operator causes memory exception

    I compiled VC++ 6.0 code with VC++.NET 2003/2005 beta and both causes a memory exception with CString assignment. My code looks like the following: CString szFileName = g_pGlobal->m_szAppPath; where g_pGlobal is a pointer to an object with global scope. The crash occurs if the assignment is done outside of the object instance itself. Quick Watch shows all CString members of that object are Bad Ptrs! I don't get it. ...Show All

  • Windows Search Technologies Error executing myQuery.ExecuteQuery(...).

    I'm a newbie. I tried this simple console code. The compilation was ok, but the code crashed when it invoked myQuery.ExecuteQuery(...). Any hint for me QueryBuilder myQuery; myQuery = new QueryBuilder(); DataSet dataGrid1; dataGrid1 = myQuery.resultSet; myQuery.clearColumns(); myQuery.addColumnList(ColumnType.GeneralColumnList); myQuery.addColumnList(ColumnType.MusicColumnList); myQuery.sortColumn = ColumnType.GeneralColumns.DocTitle; string yq ...Show All

  • Visual Basic give or take

    How would I write the following in vb8. 5.291 772 083 × 10 11 ± 19 × 10 20 The symbols I cannot get to compile are the and the ±. Any ideas For the " ", you can use System.Math.Round() , this function r ounds a decimal to a specified precision (and you can use Microsoft.VisualBasic.Conversion.Fix() ). ...Show All

  • Visual Studio debugging my other programs?

    Hi, I have a big problem with my visual studio: when I try to execute some of my other programs, a 'just in time debug' message appears. It asks me wether or not I want to start debugging with VS. Due to this message, I can't use those programs anymore! :( A friend of mine had the same problem, and it wasn't solved uninstalling VS.. The only thing that worked, was a clean format. His right-mouse button was also a trigger for the j ...Show All

©2008 Software Development Network

powered by phorum