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

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

Andre's

Member List

V1ad
LordZoster
Dietz
nalini
GonzaloA
Ofir Epstein
sandeep srivastava
alamandra - MCP
KingKoo
Stoobs
LML
sully111
Corinna Vinschen
zoranj
Neeva
Hervens
Monte Chan
Gert Drapers - MSFT
Sheng1983
PareshGheewala
Only Title

Andre's's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Playing (avi) video's in XNA?

    I would like to play a little into-video before my game starts, its simple and small and it's an avi (though I could easily change its format), how do I play it with XNA MDX used to have AudioVideo playback, but I can't find that in XNA. my thought would be, if you want it to work on xbox, you're going to have to write your own content importer for the avi file itself. then manually extract each frame of the avi and sync up your framerate to match the framerate of the avi, playing one frame of avi per game frame. that's the abstract thought i have about it... though in practice, i haven't the foggiest! ...Show All

  • Visual Studio Help not listed in TOC after install

    Hi All, I am finding a strange problem with the integration of help collection. In our case, help is installed using a VS setup program. This msi is being installed silently as part of another msi install. The help is registered correctly. The help collection is listed in the filter combobox for help-index, contents and search. But, say in contents, no contents from the help is listed. similarly for index, no entries from our help collection are listed. Search also doesn't work. I can get this working by removing our collection from VSCC and adding this again, I have to close and reopen IDE between and after these steps. Any idea how to resolve this so that the help collection works after install without any further ste ...Show All

  • Visual Basic Stop application from terminating on form close

    I am working on an application with a notify icon. I want the application to continue to run even if the user closes the form. Is there any way to make this work I haven't tested this with a notify icon but t his should do it: Private Sub Form2_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing If e.CloseReason = CloseReason.UserClosing Then Hide() e.Cancel = True End If End Sub Note that you want to check the CloseReason property so that your app will shut down properly in other circumstances. ...Show All

  • SQL Server Regarding Stock chart

    Im quite new to SSRS, i wanted to create charts in SSRS. I managed to get my line and bar charts right, but im confused with the stock chart and not able to understand the high-low-close data values , and how to map those to my data. Can anyone please help me out on this issue with an example. Thanks in advance. Hi there, You may want to check out Dundas Software for better charting capabilities. Here is further info on stock chart http://msdn2.microsoft.com/en-gb/library/ms155962.aspx Here's a posting around how to format the data for charting. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=981628&SiteID=1 cheers, Andrew ...Show All

  • Visual Studio Indentation in code-tag in included xml-tag

    If I want to use a <code>-tag containing indentation in an Xml documented member, I can do it like this: /// <remarks: /// <code> /// &lt;MyKey &gt; /// &lt;registrations default="<i>MyDefaultRegistration</i>" &gt; /// &lt; /MyKey&gt; /// </remarks> This works fine. However, I have some sample code that I need to use a couple of times so I wanted to copy this sample code to a separate Xml-document and then reference this sample code using the <include>-tag. Like this: /// <include file='ApplicationDoc.xml' path='docs/member[@name="ApplicationLogon"]/*'/> The contents of my xml-document looks like this: < ...Show All

  • Smart Device Development Is it possible to send a sms or call to mobile phone itself?

    i mean a virtual call that maybe seems really comes from another person Possible with emulator. See here ...Show All

  • SharePoint Products and Technologies Problem using email to initiate workflow

    I have a situation where a workflow attached to a list is being initiated successfully in one case but not another. My setup uses two lists, one workflow, and one event handler: List 1 "BizOp Announcements" : this is a Sharepoint announcements list that is set up to receive email from a user whenever a new Business Opportunity comes in (the user gets the email and forwards the email to the list) List 2 "BizOps" : this is a simple custom list with about 10 fields. Each list item represents a new Business Opportunity that our marketing team will need to see Workflow : I have a simple workflow attached to List 2. It creates two tasks whenever a new item is added to List 2 Event Handler : I have an ItemAdded( ...Show All

  • SQL Server matrix column grouping

    Hi, I have a requirement from my users to be able to drill down for a single column in a matrix. I've been able to implement drilldown for all of the measures (all columns grouped at the same time) in my matrix but they now want to be able to group different columns independently of each other. In other words they want to be able to group the data in different columns by different things. An example might make my question clearer, the report would need to look like this:  Client Name Sales - Costs + Revenue - Client A + Europe + Middle East + Asia Pacific + $12,000,000 Products + Investments + $12,000,000 $8,000,000 $4,000,000 $10,000,000 $22,000,000 ...Show All

  • Visual Studio 2008 (Pre-release) Complex DataTemplate doesn't work

    Hello! I tried to make a ListView with a complex DataTemplate, but when I tried to start a Storyboard in the DataTemplate to animate some content of it, I got many errors… So I built a small example… < Window x:Class = " WPFBug.Window1 " xmlns = " http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x = " http://schemas.microsoft.com/winfx/2006/xaml " xmlns:d = ' clr-namespace:System.Windows.Data;assembly=PresentationFramework ' Title = " WPFBug " Height = " 300 " Width = " 300 " WindowStartupLocation = " CenterScreen " > < Window.Resources > < XmlDataProvider ...Show All

  • Visual Studio 2008 (Pre-release) Layout Transformation

    Is there an event that tells me when a transforamtion is applyed on a framework element Because i want to invalidate the transformation when it's applyed over an element. ...Show All

  • Visual C++ Problem with combobox in the toolbar

    I created a class CStyleBar derived from CToolBar and I added a combobox to that class I Override the OnCreate handler like this int CStyleBar::OnCreate(LPCREATESTRUCT lpCreateStruct) { if (CToolBar::OnCreate(lpCreateStruct)==-1) return -1; if (!LoadToolBar(IDR_STYLEBAR)) return -1; SetButtonInfo(0,ID_STYLE_FONTNAME,TBBS_SEPARATOR,500); CRect rect; GetItemRect(0,&rect); rect.bottom=rect.top+500; //rect.right=500; if (!m_tbFontFace.Create(WS_CHILD | WS_VISIBLE | WS_VSCROLL | CBS_DROPDOWNLIST | CBS_SORT, rect, this , ID_STYLE_FONTNAME)) return -1; FillFonts(); } where ID_STYLE_FONTNAME is the id of the only button in the toolbar and FillFonts() loads all the f ...Show All

  • Smart Device Development Porting pocket pc application to smartphone application

    Hi I am porting my pocket PC application to smartphone application , after removing some button contrls it's showing the very first screen as expected containg some picture boxes and labels inside a panel , the panel was written with withevents and it supposed to call an event with the click , but it's not working accordingly. I had three major events in my application ie : MouseUp,MouseDown,MouseMove . None of the events are executing with the click of action click . How can i configure my application to smartphone . ...Show All

  • Visual Basic compressing the file

    Hi I have check the website by using the compact command to compress the file. but i fail to compress it, for example i have a file call CompanyName.xls i type in command prompt n test -> compact /c c:CompanyName.xls its show sucessfully but i didnt see the compress file in drive c: and last how can i make this command to run in program created using v.net You'd need a ZIP utility, something like InfoZIP , WinZip or WinRAR , and execute the command line version of that utility to create a zipped archive. I use InfoZIP, it's free and works pretty well... ...Show All

  • Visual Studio Team System When build quality is changes is any history kept?

    When a change is made to the build quality, besides the triggering of an alert, if there a way to see the date and the person who did this action. We would like to know the series of build quality changes that could have occurred on build (from development, to test to release). This would be useful for auditing purposes (we traceability is a high priority within the build promotion and release process) Thanks B. Huard There is no way to track a history of changes made to a particular build, nor is there a way to determine what the last change actually was. The only information stored is who made the change and when it was made. If you require some sort of auditing you could p ...Show All

  • Visual Basic Need help on call fx in a do loop

    I am trying to call 4 functions together in a loop With a 2s delay in between each fx However only the last fx is called What is goin on Timer2.Start() Do While Timer2.Enabled = True Call RLeg_Up() If Timer2.Enabled = False Then Call RLeg_Down() Timer2.Start() If Timer2.Enabled = False Then Call LLeg_Up() Timer2.Start() If Timer2.Enabled = False Then Call LLeg_Down() 'Only LLeg_Down is called Timer2.Start() End If End If End If Application.DoEvents() Loop Still a noob btw This is how i think the code should be you can do like this to wait 2 second in between two function calls. //Call f ...Show All

©2008 Software Development Network