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

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

SiddCF

Member List

REche
Manuk
Manish 3177
programmer01
Wee Bubba
BioGeek
DRoden
spydude777
MJMatthew
chris441962
fripper
Maclau
87jerome
CostasZ
Frances83
Chrisky
tkroll
Dave Holmes
Vladislav Pereiaslavets
Urip
Only Title

SiddCF's Q&A profile

  • Visual Studio Tools for Office VSTO Deployment Installation

    Hi all, I've got a question about VSTO deployment installation. I wonder how can I choose the prerequisites list for VSTO Redistributable package and Office PIA package. As far as I know, these two packages may need along with .Net Framework. But, so far, those two Office packages are not in my prerequisties list. Thanks, Myo Hi, Is there anyone who can help me out with my VSTO IDE problem I can not use my windows control on my IDE. I'm writing an excel application and all the controls except for excel are somehow became disable. I did test with this IDE for a project and it went fine. I have no idea why I'm getting this problem when I started next application. Thanks for your help. Myo ...Show All

  • Visual Studio Sandcastle - August 2006 CTP is now available for download

    August 2006 Sandcastle CTP is currently available at http://www.microsoft.com/downloads/details.aspx FamilyID=e82ea71d-da89-42ee-a715-696e3a4873b2&DisplayLang=en . This blog http://blogs.msdn.com/sandcastle/archive/2006/08/27/727310.aspx , details what's new, xsltransform syntax changes and bug fixes in this version of CTP. I have also modifed the CHM generatation steps at http://blogs.msdn.com/sandcastle/archive/2006/07/29/682398.aspx . I plan to post additional blogs with details about steps for CHM generation, new MSDN link option in Sandcastle. Visit http://www.sandcastledocs.com  wiki site for additional details.   Anand.. Leon, There was a similar question about HTTP proxies on MSDNM ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Startup Image Logo

    Hello everybody I am new to c# and Using XNA, i want to start a little something for my pc a little game or something, i have bought a couple of c# beginner and intermediate books and i am currently reading them now, i was wondering when i play a game on any game the logo comes up when it starts up and it stays on there for a few seconds, how could i make this has anybody got the code they could help me with Please forgive me if this is in the wrong place, i am totally new to this Thanks High level idea: draw your logo on screen, and wait for a certain amount of time. There are lots of tutorials to help you with how to draw something on screen (bitmap, text, 3D models). To wait an appropriate amount of ...Show All

  • Visual Studio Team System Extensibility of Data Generation

    I badly need documentation on the extensibility / creation of custom Data Generators (Attributes and their parameters, custom designer entries or adapting / using the designers that are there, custom data bound, etc.) and can't find anything othere than the too simple examples. I thought there was a link somewhere in the forum, but I can't find it again. Is there anything published / blogged yet beyond returning simple values Alle Alle - You may also want to have a look at the updated product documentation on MSDN - http://msdn2.microsoft.com/en-us/library/aa833253.aspx We've updated the data generator extensibility docs (more updates will be coming, we publish monthly doc updates now - nex ...Show All

  • Visual Studio 2008 (Pre-release) Creating a RoutedEvent using reflection on an object

    So I have code where I am using reflection on an object, looking at all of its RoutedEvents, and then hooking all the RoutedEvents up to a pre-made AllPurposeRoutedEventHandler. My problem is the AddHandler method wants a RoutedEvent as an arguement, and I cant think of a way to go from an EventInfo or EventDescriptor to a RoutedEvent. My dream would be if AddHandler took a string as an arguement, something like AddHandler(eventInfo.Name, new RoutedEventHandler(AllPurposeEventHandler)); but alas, Addhandler demands something like AddHandler(ROUTEDEVENT, ....) Any ideas Hate anwering my own question...EventManager gives a RoutedEvent[] of all routed events, and you can compare the name of the EventInfo to t ...Show All

  • Windows Forms Controls Collection

    In VB6 when a control was part of the Controls collection of the form, even if the control was on another container (eg. a Tab control, picturebox etc.). In WindowsForms a control is part of the Controls collection of its direct container.So in order to iterate through all controls on a form you have to make a recursive method. However, a UserControl also has a Controls collection and exposes all controls contained in it. Is it possible to discern the controls that was added directly on a form, even on a seperate container, from the controls that are part of custom UserControls Maybe this code is useful: Public Class Form1 Private Function AllControls(ByVal from As Control) As List(Of Control) Dim lst As New List(Of ...Show All

  • Software Development for Windows Vista How to Serialize individual Ink Strokes?

    Hello, I am just wondering how to serialize individual ink strokes. When I attempt to I catch an exception stating that the Ink.Stroke object is non-serializable. I would love to not have to save the Ink object and serialize the entire thing, but instead simple grab a single stroke and serialize it. Does anyone have any information that may help with this Thanks again! Hi, you can serialize an individual stroke by copying it into its own temporary Ink object. Then you can call Save() on that Ink object - see code below: byte [] SaveSingleStroke( Stroke strokeToSave) { Ink tempInk = new Ink (); Strokes strokesToSave = strokeToSave.Ink.CreateStrokes(); strokesToSave.Add(st ...Show All

  • SQL Server How to Setup JDBC for SQL2005 in Webshpere 6.0

    Does anyone know the steps on how to get SQL2005 to talk to a Websphere application via the MS JDBC We are trying to setup the Niku Clarity system with a new SQL2005 Database. Thanks This works great when creating XA data sources in WebSphere 6. Thanks. (By the way, if the one warning you received was for the "url" custom property, I got that to go away by naming the property "URL". Apparently case matters.) However, has anyone tried creating non-XA SQL Server 2005 data sources in WebSphere 6 I've tried and I keep getting: DSRA8101E: DataSource class cannot be used as one-phase: ClassCastException: com.microsoft.sqlserver.jdbc.SQLServerDriver, error code: NOT_A_1_PHASE_DS. Is it possible that WebS ...Show All

  • Windows Forms Data binding and Checkbox values

    Ok... I have a value in my Sql table called "Disconnected" is a bit type....0 for not being disconnected 1 for being disconnected, Now i have a checkbox in my windows form that will submit information on a product....if the Disconnected checkbox is checked how do i send that value to the sql db...I know the checkbox is a bool value so if its checked it returns true if not it returns 0 for false.......I know i can type cast a bool to a bit, so should i do that within a property or something anyhelp or any links on how to get this done will be most helpful!!! Ok so your saying that If i have a form with some text fields and i pull up the information about a pacific product....and I check the discontinued button...All I hav ...Show All

  • Visual C++ Suggestions needed whether ON_WM_TIMER should be added to CView class or not

    I want to upate my application's (an SDI app. using VC++ 2005, MFC) view at a regular interval, say at 1sec. using timer event handler. Here five event IDs are set ( using SetTimer(...) ) with five different intervals (one of which is 1sec.). The view needs to be updated after processing some data recived from a device. I am facing some problems while updating view. Regarding this, I want to know the answers of the following questions: 1. What should I use; ON_WM_TIMER of CMyAppView class or of CMyAppMainFrame class of my app. Which one is better 2. I added ON_WM_TIMER to CMyAppView class for testing purpose, but sometimes flicker takes place while updating the view (used InvalidateRect(&MyRect, FALSE) to do this). How can I r ...Show All

  • SQL Server Column compression

    Hi, I was looking for a column compression functionality in SQL Server Compact and it seems that it doesn't exist (maybe I'm wrong ). I wonder if the SQL Server Team plan to implement column compression and if yes, when can we expect it Thank you for your help! There is compression functionality for SQL Server 2005 (http://www.codeproject.com/cs/database/blob_compress.asp ). The problem with SQL Server CE is that it does not support stored procedures and you will not be able to use this functionality. If you don't need to update the LOBs in your mobile device you can compress them in SQL Server, replicate them and decompress them at presentation time... but to answer your question we (the SQLComp ...Show All

  • Visual Studio Express Editions coding help

    Public Class Form1 Dim ans As String Public Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load 'whatever is in here will be executed when you start the program' End Sub Public Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click 'whatever is in here will be executed when you press the button 1' test() 'this gives me "test is type and cannot be used as expression" ans = InputBox( " thats it" ) End Sub Public Sub Button2_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click End Sub End Cla ...Show All

  • Smart Device Development Reproduce MP3 by CF 2.0

    Hi everybody!! I'm trying to reproduce MP3 by CF 2.0 about WM 5.0, however I have got to reproduce only WAV: [DllImport("coredll.dll")] public static extern int PlaySound( string szSound, IntPtr hModule, int flags); My second option has been to use Windows Media Player and to hide its windows: private void button2_Click(object sender, EventArgs e) { Process audioPlayer = new Process(); audioPlayer.StartInfo = new ProcessStartInfo("wmplayer", "Windows//notify.wav"); audioPlayer.Start(); IntPtr hWnd = FindWindow(null, "Windows Media"); ShowWindow(hWnd, SW_MINIMIZE); } but it does not work, since this windows appears maximeze. What can I reproduce MP3 using basic library ( ...Show All

  • Audio and Video Development WMP11 not giving mousemove events in full-screen mode

    WMP11 Beta breaks my application that works well with WMP10. I am using the WMP ActiveX control. I receive Mousemove events in full-screen mode in order to provide a custom control panel that appears when the mouse is moved. This works well with WMP 10, but in WMP11 Beta, I get no mousemove events in full-screen mode. Is this by design (although I can't imagine why), or is this a bug that will be fixed when WMP11 is released I need to know if I should find a way to work around this (no ideas yet) or if it won't be an issue with the release version. Any help on this issue will be much appreciated! Your post belongs here: http://www.microsoft.com/windows/windowsmedia/community/newsgroups/WindowsMedia/defaul ...Show All

  • Visual Studio 2008 (Pre-release) HierarchicalDataTemplate and pack://application => Doesn't work ?

    Hi everybody, Using the June CTP of WinFX, I'm trying to customize a Treeview so I decided, for the ItemTemplate, to use a HierarchicalDataTemplate. I'm an image Folder.ico (build as a Resources) in my project, located in a folder called Resources. Here is my code: < HierarchicalDataTemplate x:Key = " TreeviewListLibrariesItemsTemplate " > < StackPanel Orientation = " Horizontal " > < Image Source = " pack://application:,,,/Resources/Folder.ico " VerticalAlignment = " Center " /> < TextBlock Text = " {Binding} " VerticalAlignment = " Center " /> </ StackPanel > </ HierarchicalDataTemplate >   It works fine for the text but I get an exception for the ima ...Show All

©2008 Software Development Network