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

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

kemal

Member List

Divya Bhasin
tsith
Eitan Shapir
lours78
Cogz
Seraphino
K.Kong
Enlikil
JHagan
darklightred
divya mittal
ClaudiaHelpOnVSTO
Rick Hodder
PrashanthBlog
lb17
jack563
Roozbeh Sharafi
BeckyB
KentaroM
M Thomas
Only Title

kemal's Q&A profile

  • Smart Device Development Developing an interactive application

    Dear Sir, Where could I get samples espetially for video/audio and windows media player sdk. I would like to develop an application with interactive video and audio contents on windows mobile. The application has the following features: 1, The platform should be windows mobile type such as WM 5.0 pocket pc and smart phone and Pocket PC 2003 and Smart Phone 2003. 2, It is capable of playing video and audio contents via a programmer defined fancy skin. Common buttons such play/stop/pause and common menus such as file/play list should be available. 3, Interactive video and audio functions should be available. For example, the programmer is capable of setting some bookmark on video and audio contents. When the contents are played to this ...Show All

  • .NET Development Parsing the content inside <!DocyType... > using .Net Framework classes.

    Hi, I am using XmlTextReader to parse through my xml : < xml version="1.0" > <!-- This is a sample XML document --> <!DOCTYPE Items [ <!ENTITY number "123"> <!-- This is a sample XML document inside DTD element--> ]> <!-- This is a sample XML document before element--> <Items> <!-- This is a sample XML document after element--> <Item>Test with an entity: &number;</Item> <Item>test with a child element <more/> stuff</Item> <Item>test with a CDATA section <![CDATA[<456>]]> def</Item> <Item>Test with an char entity: &#65;</Item> <!-- Fourteen chars in this element.--> <Item>12345678 ...Show All

  • SQL Server HTTP Access to Analysis Services 2005

    Anyone know how to configure this yet   Would like to be able to test client access to Analysis Services 2005 using an http connection instead of a direct connection.  It doesn't look like this is documented in BOL yet (at least not in the June CTP build). Thanks, Dave Fackler You will probably have to configure Kerberos for authentication. Here is a link of how to setup this: http://www.mosha.com/msolap/articles/kerberos_delegation.htm If you have the iis on the same machine as SSAS2005 this problem will not appear. Regards Thomas Ivarsson ...Show All

  • Visual C# simulating keystrokes

    After piecing together some code I gathered from several forum posts, etc I have the code below. What I was hoping it would do is when the form loads it would fill the textbox with the letter A simulating that the A key had been pressed. It doesn't cause any errors but nothing seems to happen. My ulimate goal is to be able to simulate key presses on other applications to help automate processes (like product imports into our company CRM). What am I doing wrong using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; using System.Runtime.InteropServices; namespace VKTest { /// <summary> /// Summary description for Form1. /// </summary> public ...Show All

  • Smart Device Development Using COM on Pocket PC

    I projected about Text to speech, Could I ask you some questions I only need a file Interop.SpeechLib.dll to program, Do I not need to install any software Can I program Text to speech on smart device like pocket PC Thank you so much for your help. Yes, you need to install some TTS engine and call into it. Please refer to documentation of whatever engine you're using. ...Show All

  • Visual Studio Team System Recursive Copy within Team Build

    I can't see what I am doing wrong, can someone please help me The scenario is that I would like to copy the output generated by Team Build to a specific location (publish a web app on a web server). To do this I implement the copy task in the CustomCopy target in the file CustomAction.target file. Using the instructions on for how to do recursive copies. Below is the extract from the .target file: < ItemGroup > < MySourceFiles Include = " $(DropLocation)\$(BuildNumber)\**\*.* " /> </ ItemGroup > < Target Name = " CustomCopy " > < Copy      SourceFiles = " @(MySourceFiles) "      DestinationFiles = " @(MySourceFiles->'C:\Inetpub\wwwroot ...Show All

  • SQL Server help!!!求救!!!

    Application Log: Event ID 17311 SQL Server is terminating because of fatal exception c0000005. This error may be caused by an unhandled Win32 or C++ exception, or by an access violation encountered during exception handling. Check the SQL error log for any related stack dumps or messages. This exception forces SQL Server to shutdown. To recover from this error, restart the server (unless SQLAgent is configured to auto restart). Message [012] The MSSQL$DATAPROSQL service terminated unexpectedly please please who can tell me why and how to 事件 型: 事件 源: MSSQLSERVER 事件种 : (2) 事件 ID: 17311 日期: 2006-8-19 事件: 11:10:47 用 : N/A 算机: TXOA 描述: 由于出 异常 c0000005,SQL Server 正在 止。此 可能是由未 理的 Win32 或 C++ 异常造成的,也可能是因在 理异常 程中遇到的 引起的。 查看 SQL 日志, 取任 ...Show All

  • Visual Basic Array of Buttons

    I want to create rows and columns of buttons in my code using an array. If anyone know how to do this please respond. What you posted should work. You'll have to match the case so you might want to use "If btn.Text.Trim.ToUpper = "CANCEL" Then..." What problem are you having ...Show All

  • Visual Studio 2008 (Pre-release) July CTP - Guidance on factory close and message faults

    It is always a good practice to close the channel factory once you are done. This practice leads to following code (with custom binding): using (ChannelFactory<IClientEcho> factory = new ChannelFactory<IClientEcho>(binding, remoteEndPoint)) { //Create proxy and call its method IClientEcho proxy = factory.CreateChannel(); responseString = proxy.ClientHello(requestString); } However if the service call fails with MessageSecurityException (for example), the end of using block throws a completely different exception (CommunicationObjectFaultedException). To avoid this different exception, one has to write the code that does not use using block and write the code to close only ...Show All

  • Windows Forms Datagrid Cell Keypress

    VS 2005 windows unbound datagridview I want to ensure that only numeric values are entered into a datagridview cell. Is there anywhere to put a keypress event in a cell Buster95 wrote: BTW, can someone explain how to post code on this Forum in boxes so that it comes out nice and neat. Thanks. This post describes some of what you are looking for How to Format Code for a Post . ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XML TOOL KIT HELP

    hey there was wondering if any one is able to give me a few pointers on XNA. trying to create a toolkit using xna that will allow me to design levels, but also want to export the created level to an xml file and also reloaded it into my main game engine from the the xml file, any pointers cheers, thanks for there help   Shawn Hargreaves - MSFT wrote: Be aware that there is no BinaryFormatter on Xbox: that's not included by the Compact Framework. Thanks for the heads up. How about the XmlSerializer If so, then just do: XmlSerializer serializer = new XmlSerializer( typeof (Level)); Stream writer = new FileStream (filename, FileMode .Create); serializer.Serialize(writer, this); writer.Close(); ...Show All

  • SQL Server Last time synchronized

    I use SQLCE2.0 and merge replication. Is there a way to query SQLCE to find the time of the last synchronization without manually tracking the time myself. Thank you. The following query works with SQL Mobile 2005 and later: SELECT LastSuccessfulSync FROM __sysMergeSubscriptions WHERE Publication = " + strPublicationName - not sure it works with SQL CE 2.0, though. ...Show All

  • Visual Studio Team System TFS HandleComException error

    I'm trying to programmatically create a bug in TFS like so: try { TeamFoundationServer tfs = TeamFoundationServerFactory.GetServer( "http://TFS:8080" ); WITracking.Client.WorkItemStore store = (WITracking.Client.WorkItemStore)tfs.GetService( typeof (WITracking.Client.WorkItemStore)); //create WI of type bug WITracking.Client.WorkItemType workItemType = store.Projects[ "ROI" ].WorkItemTypes[ "bug" ]; WITracking.Client.WorkItem workItem = new WITracking.Client.WorkItem(workItemType); workItem.Title = textBox1.Text; workItem.Fields[ "System.AssignedTo" ].Value = "Kawatana" ; workItem.Fields[ "Microsoft.VSTS.Common.Priority" ].Value = 1; ArrayList list = workItem. ...Show All

  • Visual Studio Express Editions Stupid Developer News Doesn't Update

    In all most my Express Editions, the Developer News is dated back to the "12 Finalists Announced in...." In C#/XNA, however, it's updated to the "Coding4Fun Face lift." How do I update all my others like this   I registered them all. I found that this is a known bug that will be addressed in SP1. In order to update the content you can do the following: Tools->Options->Environment->Startup (make sure the show all settings button is checked) Set the "Download Content Every" box to 5 minutes. This will pull in the updated feeds. ...Show All

  • Visual C# Saving User Settings

    I'm writing an app where I need to save some inputs from the user. I cannot use the app.config method because the users will not have admin access on their machines. I've tried doing this through the Visual Studio IDE, but its still outputting the settings to app.config (I cannot even get it to read the settings back in). Does anyone know if there is a way in .NET to do this. My alternative is to write the code to do it and I was trying to avoid that. Thanks for your help! Hello All. efriese: The appname.config file in the .exe directory is where the default setting values are stored. The persistent settings for each user are in that user's isolated storage, which changes depending on whether the user is a roaming user or not ...Show All

©2008 Software Development Network