Software Development Network Logo
  • Smart Devicet
  • SQL Server
  • Visual FoxPro
  • .NET Development
  • Game Technologies
  • Visual Studio
  • Windows Forms
  • Windows Vista
  • Visual C++
  • SharePoint Products
  • Microsoft ISV
  • IE Development
  • VS Team System
  • Visual Basic
  • Audio and Video

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

spinnaker15136

Member List

ackermsb
Owend
briggins5
antonioa - msft
Ayhan Yerli (TR-NL)
Chidu
Andreas_
rivi
Rick Simmons
Kevin Jacobson
gauls
Anders Pettersson
djenerate
ClemensT
vimaljonn
clint 2
John David
David Kulwin
radcom
Dottj
Only Title

spinnaker15136's Q&A profile

  • Visual Studio 2008 (Pre-release) Outlook Bar like control in WPF

    Does Avalon come with a native Outlook Bar control If not, would there be any native Avalon control that could be easily extended to behave like the Outlook Bar Thanks in advance. Nish, There is no Outlook Bar control in WPF at this time. You could emulate it by using a ListBox whose ItemTemplate modifies the items to look like the Outlook Bar headers. When the selected item changes, you could set the Visibility of a the panel associated with the current selected item (to Visible). That should be a good starting point for creating that look and feel. ...Show All

  • Visual Basic how to bind 2 comboboxto the same data table but make them select separately?

    Hello, I am trying to bind two comboboxesto the same data table created using the getSchema method.(I wanted to put the list of columns in the combobox) so I used this Dim colSchema As New DataTable Dim colView As String() = New String() {Nothing, Nothing, colClass, Nothing} colSchema = fileConnection.GetSchema("COLUMNS", colView) cmbScore1.DataSource = colSchema cmbScore1.DisplayMember = "COLUMN_NAME" cmbScore1.ValueMember = "COLUMN_NAME" cmbScore2.DataSource = colSchema cmbScore2.DisplayMember = "COLUMN_NAME" cmbScore2.ValueMember = "COLUMN_NAME" now, after testing, I find that whenever I scroll things in cmbScore1, the same thing will ha ...Show All

  • .NET Development System.Collections.ArrayList sorting improvements

    Hi! Short suggestion about this class. It's got several Sort methods implemented. But none of them expects System.Windows.Forms.SortOrder parameter, what would be great. (PS.I know how to implement it.) Cheers, Dawid Ireno. Of course - serving an IComparer implementation would work fine. But that's not the point, is it In .NET Framework there is a lot to do. For example .NET's 1.1 string (the very very basic class!) had no Contains(string) method. Version 2.0 has got it, while it was natural. It was only a matter of time Cheers, David ...Show All

  • SQL Server Problem with Report Model.

    Hi, I am using report model as my data source and when I preview my report, I got the following error message: An error has occurred during report processing. (rsProcessingAborted) Cannot create command for data source 'xxxx'. (rsErrorCreatingCommand) An attempt has been made to use a data extension 'SQL' that is not registered for this report server. (rsSemanticQueryExtensionNotFound) Anyone has any idea how to fix it Many Thanks, UT A couple questions: What Version & Edition of SQL Server do you have installed Do you see this same error when you publish and render the report from Report Manager Is the Data Source local to your Report Server - Jason Tremper ...Show All

  • Windows Forms problem of update an item from a listView,urgent, need help!!

    I have a list view problem,my list view contains the items (e.g. A, B, C, D and etc.) and quantity of the items (e.g. A-3, B-1, C-4, D-2 and etc.) and now i would like to delete the items by randomly selecting it, example when i double click on A-3 , it will automatically change from A-3 to A-2 , does anyone know how to write it Hi, sunni05 The ListView has a DoubleClick event, you can handle this event to when double click on item(s). e.g. private void listView1_DoubleClick( object sender, EventArgs e) { this .listView1.SelectedItems[0].Text = "A-2" ; } Hope it helps. Best Regards. Ye ...Show All

  • Visual Studio Express Editions Database Project in VB2005EE again/still

    This question got marked as answered in a previous thread but even though the code runs without error it doesn't produce the result I was looking for. The following is the code: plse see comments after the code. Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load 'TODO: This line of code loads data into the 'RTOW_APCDDataSet.Airport' table. You can move, or remove it, as needed. Me .AirportTableAdapter.Fill( Me .RTOW_APCDDataSet.Airport) Dim theDataSet As New DataSet() Dim theSqlCommand As New SqlClient.SqlCommand( "SELECT IATACode FROM Airport ORDER BY IATACode ASC" ) Dim theSqlConnection As New SqlClient.SqlConnection( &q ...Show All

  • Windows Forms Formatting values in numericUpDown Control

    Does anyone out there know how to format the value you see in a numericUpDown control (or a textBox). For example im trying to format numbers so that they appear as XX.XXX (ie. 05.900).  Does anyone know how to do this   I feel like it should be simple but I cant figure it out.  Any help would be greatly appreciated. ...Show All

  • Visual C# Again: Regarding Webcam Capture (Urgently need help)

    I really need help guys, i really need help, im so stressed, i cant find the answer no matter how many times i read up. Im really stupid. i got this capture code in c# using System; using System.Drawing; using System.ComponentModel; using System.Windows.Forms; using System.Runtime.InteropServices; using CaptureTypeLib; public class Form1 : System.Windows.Forms. Form { IGraphBuilder gb = null ; IMediaControl mc = null ; IMediaEventEx me = null ; IVideoWindow vw = null ; ICaptureGraphBuilder2 cg = null ; Rectangle rect; //CLSID_FilterGraph (take from uuids.h DirectX include) Guid FgGuid = new Guid ( "e436ebb3-524f-11ce-9f53-0020af0 ...Show All

  • SQL Server SQLServer Version Registry Key

    Hello, Any one know the SQLServer 2000 and 2005 version key. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\MSSQLServer\CurrentVersion is not returning correct value for example SQLServer 2005 box registry value is 9.00. 2047 .00 but Select @@Version outout is Microsoft SQL Server 2005 - 9.00. 2153 .00 (Intel X86) May 8 2006 22:41:28 Copyright (c) 1988-2005 Microsoft Corporation Enterprise Edition on Windows NT 5.2 (Build 3790: Service Pack 1) Thanks. ...Show All

  • .NET Development Inheritance Issues with base class parameter

    I have an abstract base class Person that my concrete Employee class inherits from. My web service take anything that can be cast to a "Person" as a parameter. When not using inheritance i modify my proxy autogenerated class and strongly type the parameter and it works fine. When i try the same, but this time using inheritance i get the following : "Use the XmlInclude or SoapInclude attribute to specify types that are not known statically." I have put two XmlInclude elements below the [WebMethod] of the service telling it about the concrete class and the base class. What am i missing I am using VS.Net 2005. thanks, Steven. You do not need to edit the proxy: adding ...Show All

  • Community Chat Any language supports Counter?

    On a lot of occations, I want to use a counter like Counter(3). It ranges from 0 to 2. I can add any number to it. If I have 4 when it is 0, I get 1. It will be cooler if I can subtract 4 when it is 1, and I get 0. And, of course, I can define the Counter count at inistailzation stage. Is there any language supports this data type by nature I don't want to define the data type myself. Thanks. I don't know of any language which intrinsically supports this, but that doesn't mean one doesn't exist. You say you don't want to build this data type yourself -- any special reason why not Obviously if you're working in VB you don't have the option, but in C++ this should be a fairly trivial thing to implement, ...Show All

  • SQL Server SQL 2005 Management Studio Timeout expired

    I get the message - "Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding" - when working with large tables in Management Studio. I have tried changeing the following: 1) Selected Tools -> Options 2) Expanded the "Query Execution" node 3) Clicked on "SQL Server" 4) Set value for "Execution time-out" to 0 and various numbers up to 1800 Also checked the following 1) In Object Explorer I right-clicked on the server and selected "Properties" 2) Selected the "Advanced" page 4) Set the value for "Query Wait" under "Parallelism" to various values from the default of -1 up ...Show All

  • Windows Live Developer Forums What is the difference between the following mapcontrol.js and Which one is Microsoft Virtual Earth Map Control?

    What is the difference between the following mapcontrol.js http://dev.virtualearth.net/mapcontrol/v3/mapcontrol.js http://dev.virtualearth.net/standard/v2/MapControl.js Which one is Microsoft Virtual Earth Map Control I appreciate your help. Yep - v2 is simply an older version with a LOT less functionality. We provide the different URLs so that you have time to update your site to the latest version when we roll one out. You can still use v2, but a) I took down the documentation on it, b) you'll lose a lot of features, and c) it will be retired at some point sooner than v3. ...Show All

  • SQL Server Strange behavior of format function

    Hi, I came upon a strange behavior of Format function in report, which I'm unable to explain. I have some double value, which I want to format. E.g. the value is in db field "Users" and is 303870 1) If I set a Value property for the field to =Fields!Users.Value or CDec(=Fields!Users.Value) //the value is already double so the CDec has no effect and Format property for the field to =Format(me.Value,"#,#") or =Format(Fields!Users.Value,"#,#") than the number which is visible in the report is 3303,873870 2) If I put in the Value property =Format(Fields!Users.Value,"#,#") and the Format property is empty than the output is ok 303,870, however this is not desired, because the value is than handled as ...Show All

  • Visual C++ Sound Played every time I press Enter

    Hi, I'm quite new to Visual Studio 2005 and C++. I've developed a Windows Forms Application with the C++ visual studio, and every time I press the Enter Key in the running program, then windows makes a Sound. In some TextBoxes I have KeyPress Events, and in the called funktions I have: " if (e->KeyChar == '\r' )" with e being the System::Windows::Forms::KeyPressEventArgs. but the sound isn't bound to these TextBoxes it occures every time I press the Enter key. I would be very glad if someone could tell me how to deactivate this. Thanks in advance!! Ok I'll answer this one myself, for whoever is interested. I discovered, that you only have to set the Handled property to true, like t ...Show All

©2008 Software Development Network