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

Software Development Network >> steven price's Q&A profile

steven price

Member List

Reb3lzrr
dork
Lawrence 007
Jamie Thomson
darthziv
White Hawk
mtm81
Mike33333
Shady-Potter
jwadew
tlc660
INDY812
DavidR100
deen
HSBF Lewe
me262
Baris ERGUN
Vighnesh Prabhudesai
sarika
kuponutcom
Only Title

steven price's Q&A profile

  • Visual Studio Does installing Studio do anything to IIS? If it does how can I duplicate these changes without installing Studio?

    Trying to install my Studio 2003 c# ASP.Net application on another server. It does not seem to work even though I have installed everything, and set up everything as I would on my own server. One difference I am aware of is that my server has Studio 2003 installed on it, was as the target server does not and can not. well without really knowing what problem you are facing, I can confirm this, but apologize if you are already aware of this: WS2003 -> installed IIS with ASP.NET 1.1 created a virtual directory in IIS called "test" copied over a simple ASP.NET application in this virtual directory (C:\inetpub\wwwroot\test) logon to: http://localhost/test/index.aspx and works very well. This is without VS i ...Show All

  • Visual C# How do I limit ticks is a checkListBox to one at a time?

    Hi, I am trying to use a checkListBox to select one of three options. I only want any one option at a time. I have found the following 2 instructions, which, I would have thought, would have done what I want, but I can still check all three boxes. this .checkedListBox1.CheckOnClick = true ; this .checkedListBox1.SelectionMode = System.Windows.Forms. SelectionMode .One; Incidentally, I tried this .checkedListBox1.CheckOnClick = true ; this .checkedListBox1.SelectionMode = System.Windows.Forms. SelectionMode .None; and this did whatI expected, I could not check any of the boxes. So, any one know what I am doing wrong Many thanks for being there John. Hi PJ Thanks ...Show All

  • Visual Studio 2008 (Pre-release) XamlReader.Load is not finding named elements for loose XAML

    i've got an app which loads Loose XAML using XamlReader. the problem is that named elements cannot be found by triggered animations when loaded using XamlReader.Load(). but if i embed the exact same XAML into the app ... it works fine. so how is XamlReader not parsing it the same e.g. the loose XAML has a named element in the content like this (it's an excerpt from playing video on a 3d plane). the exception this will throw when it tries to render is "'mediaElement1' name cannot be found in the name scope of 'System.Windows.Controls.MediaElement'." <GeometryModel3D> <GeometryModel3D.Material> <EmissiveMaterial> <EmissiveMaterial.Brush> <VisualBrush> ...Show All

  • SQL Server Date contol issue.

    Hello, In the date control parameter while user open the calendar he can change the year at the top of the control by click in the year and he get up and down arrow. When user go to old year ther is a problem with the calendar. Any idea The user not select a date. While you open the date control, at the top click on the year (e.g 2006) when you click on the year you can down or up to get 2005 or 2007. If you start to down to 2005,2004... you see that the calander miss dates ...Show All

  • Visual Studio 2008 (Pre-release) Looking for feedback for WPF Annotations

    Hello everybody, We are starting planning of the WPF annotation framework improvements/extensions for the next version. I am looking for feedback from those of you who tried to use annotations in their applications. Any type of comments, suggestions, whishes are appreciated. You can post them as replies to this question, or e-mail me directly at ssimova@microsoft.com . Thanks Svetlana ...Show All

  • Visual Studio 2008 (Pre-release) ListView SortDescriptions for "uncomparable" properties?

    I've followed the ListViewSort sample WPF program as a pattern to sort my own GridView on a GridViewColumnHeader.Click event. I've modified the code slightly such that the string parameter to the SortDescription constructor is the Binding path to the property (i.e. not the header title as in the original code). string header = ((Binding)headerClicked.Column.DisplayMemberBinding).Path.Path; Sort(header, direction); This is working for properties that are strings, ints, and bools. However, one of the properties I would like to sort on is a Systems.Window.Point. Attempting to sort the grid view on this Location property causes an exception to be thrown (InvalidOperationException, "Failed to compare two elements in the array.&quo ...Show All

  • Windows Forms Determine if List is displayed for ComboBox

    I have a situtation where I need to not let the mouse roller change a value in a drop down list. I was able to accomplish this by trapping the 'MouseRoller' event and canceling it for a ComboBox. However, now my users want the mouse roller to be enabled if the list is displayed for a ComboBox so they can scroll through the items. So I was wondering if there is a way to know if the list is being displayed for a ComboBox editor I am hoping to use it in the 'MouseRoller' event and not cancel the event if the list is in fact being displayed. Thanks in advance. Try the Infragistics forum . ...Show All

  • Visual Basic Erratic Behavior of AxShockWave Flash Object in VB.net programming (DesignStudio)

    We are developing an application has multiple shockwave movie displays on various screens. Inside Design Studio (VBasic.Net), we are using the AxShockwaveFlashObject; displaying consecutive sequences of swf, jpg, and gif images. When the swf displays, all subsequent gif images are not displayed until the application is rebooted. Which forum may address the use of this control, may have seen this anomaly, or even solved the problem Adobe/Macromedia provides no help.....again, the AxShockwaveFlashObject Thanks. LenFaseler Referred by reference, 0915 ...Show All

  • Visual Studio 2008 (Pre-release) Problem locating ResourceDictionaries defined in external assembly

    Here is a setup: First project, A.B.Common includes two ResourceDictionaries defined in two separate files: Resources\First.xaml Resources\Second.xaml Build actions for those files are set as EmbeddedResource. This project produces A.B.Common.dll Also there is another project, A.B.Controls where custom controls reside. That project references A.B.Common . Part of this project is generic.xaml file, themes\generic.xaml . This file references ResourceDictionaries defined in A.B.Common : ... <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="/A.B.Common;Component/Resources/First.xaml" /> <ResourceDictionary Source="/A.B.Common;Component/Resources/Second.xaml" /> </ResourceDictio ...Show All

  • Smart Device Development TrackBar dilemma ...

    I using a TrackBar to show current elapsed time of audio. As the audio is played back, the trackbar will be updated. The trackbar also used as seek function. However, here come the issue. Whenever the trackbar 's value is updated, the position is been changed. There seem to be chicken and egg problem. private void uiTrkTime_ValueChanged(object sender, EventArgs e) { control.currentPosition = uiTrkTime.Value; } The trackbar revert to startpoint whenever the audio play a while because of "deadlock". The trackBar event API seem to be poor designed as it does not take care of even the simplest case. Please do tell me how to resolve this issue. thank When you are updating your trackbar's value on your timer tick ( ...Show All

  • Windows Forms Split string to datatable

    Hi, I have large string. I want to parse it by delimeter and input to datatable. All lines in string are ended by "\n" (vbcrlf) character. The delimeter is specified by user (like comma, tab, space or something else). So how can I do this Thank's Alexei Actually, you can add column to a DataTable using DataTable.Columns.Add method, for example DataTable dt = new DataTable ( ) ; dt.Columns.Add ( "Name", typeof ( string ) ) ; dt.Columns.Add ( "Age", typeof ( int ) ) ; dt.Rows.Add ( new object [] { "John", 25 } ) ; dt.Rows.Add ( new object [] { "Mary", 21 } ) ; hope that helps ...Show All

  • Visual FoxPro Grid columns populated with incorrect data

    I have a grid with a bunch of columns. First, I suspect that the control source for the columns in this grid 'resets' itself to 'none', but I am not sure about this. Second, When I manually fill in the control source for the columns, some of the columns get populated by the next field in the cursor regardless of what I have specified in the control source. Help... Aleniko Aleniko, In your code check for a location that resets grid's recordsource. For example: .recordsource = "myAlias" or: select * from someTable into cursor myAlias && where myAlias is already used as grid recordsource ...Show All

  • SQL Server transaction inside a data flow task

    We are designing an ETL solution for a BI project using SSIS. We need to load a dimension table from a source DB into the DW; inside the DW there are two tables for each source dimension table: a current dimension table and a storical dimension table. The source table includes technical columns that indicate if each record was processed correctly by ETL procedures. Each row in the source table can be a new record, or an exisisting one. If it's a new record, a corresponding new record should be inserted into the current dimension table of the DW; if it's an exisisting one, a new record should be inserted in the storical dimension table and the existing record in the current dimension table should be updated. Furthermore for each ...Show All

  • Smart Device Development Windows Moble 2003/5 and Mobile IE and C#

    Hi I have some problems getting html content from Mobile IE. All the methods I found there can not supply any details about html page/content ( except URL). Could anyone help me I need all the html/wml page content. I found that in the standard IE there is a property Document that returns HTML Document but there is no such property in Mobile edition ( webBrowser.DocumentText is not implemented in Mobile neither). Thanks in advance. Please checkout this link http://msdn2.microsoft.com/en-us/library/aa454220.aspx about APIs exposed by IE Mobile. Code samples link here http://msdn2.microsoft.com/en-us/library/ms879577.aspx (scroll down to see IE related samples) Manav ...Show All

  • Visual Studio Crystal Report Toolbar

    While running my crystal report on web. I am not getting the Crystal report toolbar in a proper format. regards In Internet Explorer its like A Red Cross(i.e Image not availbel Symbol) Om clicking thaty symbol Like for printing Report It says Object does not support this. In Firefox Text appears Submit query for each tool. And onClick nothing happens regards ...Show All

©2008 Software Development Network