CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Jayme65

Search: Search took 0.03 seconds.

  1. XAML Binding SelectedValue to a concatenation of 2 properties

    Hi,

    I've a Person class


    public class Person
    {
    public string location;
    public string name;
    ...
  2. Read (and traverse) XAML file from MemoryStream

    Hi,

    I have an XAML document that I have to read from a MemoryStream (for the purpose of the example, I load a XAML file to a memorystream)
    Here is a shortened version of the XAML file:

    <Grid...
  3. Loading resources from XAML, problem with fonts!

    I am (I have to) using an XAML file as a resource from my main window.
    In this simplified example, the XAML file looks like this


    <Grid...
  4. Replies
    0
    Views
    2,754

    Setting Primary Display

    Hi,
    I'm trying to set the Primary Display...without success!
    Here's the code I'm working on, would you please help me see what I'm doing wrong there?
    There's no compilation error...it simply...
  5. Replies
    0
    Views
    8,001

    PathListBox animation by code

    Hi,
    I'm creating a carousel using a PathListBox.
    Everything's working fine..if I use buttons (and Interaction.Behaviors)



    <Window
    ...
  6. Replies
    1
    Views
    2,017

    Please help interpreting debug output

    Hi,

    One of the users of my application is complaining that he can't open the application.
    He gave me the debug output of the crashed application...unfortunately I'm not an expert and have...
  7. Re: Sound doesn't play instantly...but wait for next operation to complete!!

    Well, I had posted a simple code, hoping that it would be more clear for users to help me...but I'm afraid that I'd better post something very similar to my actual code..if I want the problem to be...
  8. Re: Sound doesn't play instantly...but wait for next operation to complete!!

    Well...I thought it was clear!! This is to illustrate a consuming process and keep the code simple to ask my question !!
    Any idea?
  9. Sound doesn't play instantly...but wait for next operation to complete!!

    I've a big interrogation concerning sound playback (WMP.lib)!
    This code should play a sound, then compute...but it computes then play the sound!



    Class MainWindow
    Dim writingPath As...
  10. Using Directory.GetFiles() WITH multiple extensions AND sort order

    Hi,

    I have to get a directory file list, filtered on multiple extensions...and sorted!

    I use this, which is the fastest way I've found to get dir content filtered on multiple extensions:

    ...
  11. Control storyboard inside custom control...by code

    Hello,
    How do I please control (start, stop, pause, go to specific time) a controltemplate storyboard inside a custom control..by code?

    The XAML:


    <Window
    ...
  12. Replies
    0
    Views
    1,370

    [WPF] XML Binding

    I have an XML file structured this way:


    <Emulators>
    <Settings>
    <vol name="10"/>
    <Volume>10</Volume>
    <Keys name="key1" value="1" />
    <Keys name="key2" value="2" />
    ...
  13. Replies
    0
    Views
    3,501

    Binding to an XML list of attributes

    I have an XML file structured this way:


    <Emulators>
    <System>
    <Name>Name1</Name>
    <Kind name="lexplode"/>
    <Kind name="sexplode"/>
    <Kind name="dropbomb"/>
    ...
  14. XML file source from users/appdata/roaming folder

    <Window x:Class="MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350"...
  15. Replies
    0
    Views
    4,239

    Loading XAML graphics dynamically

    Hi,
    I've got a lot of XAML (vector) graphic elements.
    I would like 1 graphic to be loaded dynamically, according to conditions met in the program.
    In clear, I would like "GraphA" to be displayed...
  16. Overriding the default keys used to navigate in RadioButtons [WPF] [VB]

    Hi,
    In my application, the user has to navigate through RadioButton's group using the keyboard

    By default, the arrow keys are used to navigate and the space bar used to select the radio button....
  17. Replies
    3
    Views
    9,128

    Re: DOS command in VB.net and WPF

    For the one interrested in:

    Dim myProcess As New Process()
    myProcess.StartInfo.FileName = "mame.exe"
    myProcess.StartInfo.Arguments = " " & displayArray(masterIndex).rom & " -volume -" &...
  18. Replies
    3
    Views
    9,128

    Re: DOS command in VB.net and WPF

    Thank you, it's perfect!
  19. Replies
    3
    Views
    9,128

    DOS command in VB.net and WPF

    Hi,
    Would you know how I do pass a command line with WPF?
    In WindowsForm I used

    Shell("cmd.exe /c mame -listxml >xmlout.xml", 0, True)

    (the app. Name and parameters,...
Results 1 to 19 of 19





Click Here to Expand Forum to Full Width

Featured