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

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

Gurhan

Member List

ChandraP
e_LA
daimaku
cgai
brohans
kumarvk
GazCoder
johnnyjunky
INDY812
shahidferoz
xxd
David Ing
Lokar
Ramakrishna_Rao
neuhawk
IXOYE333
MarcNelson
Malleswar
kidwidahair
explode
Only Title

Gurhan's Q&A profile

  • Visual Studio Express Editions C++/CLI reserved identifier question

    The following fragment uses the IN reserved identifier but I can't find anything on this identifier and would like to know what it's for and how it's used. #include "ntddk.h" NTSTATUS DriverEntry( IN PDRIVER_OBJECT theDriverObject, IN PUNICODE_STRING theRegistryPath ) { DbgPrint("Hello World!"); return STATUS_SUCCESS; } nobugz wrote: Yeah, the MSDN library is little help on the C++/CLI syntax. Amzanig. Any docs I've found talk about moving from Managed C++ to C++/CLI. Here are two articles that might help: - A baker's dozen - Translation guide What I'd like to call the "bible" on C++/CLI, is the series of articles written by Nishant Sivak ...Show All

  • Visual Studio 2008 (Pre-release) How can I bind to member classes of a class

    I want to encapsulate all the data binding, validation, conversion, etc. objects for a piece of data under a single class, then reference these child objects as needed in XAML. For Example: I can implement a collection like this *** public class MyModes : ObservableCollection<string> { public MyModes() { Add("Mode One"); Add("Mode Two"); } } And bind it to a combo box, like this <Grid.Resources> <ObjectDataProvider x:Key="Modes" ObjectType="{x:Type src:MyModes}"/> </Grid.Resources> .... ItemsSource="{Binding Source={StaticResource Modes}}" IsSynchronizedWithCurrentItem="true"> *** ...Show All

  • Windows Forms Custom table and custom action.

    I am looking for sample, workthrough, guideline on how custom action utilize/interact with custom table. Please help. ...Show All

  • Visual C++ Windows Media Format SDK

    Hello all, I am Designing an ocx control in vc++ for streaming the video from web cam.In the control module i have created a buffer(char* m_pOutBuf) for capturing the bitmap bits of the video.And iam using the same buffer to paint the window using StretchDIBits() for watching video simulataneously.This part is working fine. Could anyone suggest me,How can i use the same buffer(m_pOutBuf)to Create the wmv file for storing the video at the same time, using Windows Media Format SDK Thanks in advance. Adarsh hello re: Windows Media Format SDK Such questions are outside the scope of this forum - for the scope of the Visual C++ General forum please look at: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=19 ...Show All

  • SQL Server New partition using XMLA

    Hi, I have an existing cube containing a single partition. I am running the following xmla script to create a new partition : < Create xmlns = " http://schemas.microsoft.com/analysisservices/2003/engine " > < ParentObject > < DatabaseID > myDB_id </ DatabaseID > < CubeID > mycube_id </ CubeID > < MeasureGroupID > mymg_id </ MeasureGroupID > </ ParentObject > < ObjectDefinition > < Partition xmlns:xsd = " http://www.w3.org/2001/XMLSchema " xmlns:xsi = " http://www.w3.org/2001/XMLSchema-instance " > < ID > mypartition_M1 </ ID > < Name > mypartition_M1 </ Name > < Annotation ...Show All

  • Windows Forms User Control issue

    Hi all, I have a usercontrol library, and my application has a ref to that. my issue is i need to be able to access each control on the usercontrol using the designer. i saw that even my bindings are lost for the time, in my applications, the code remains in the .designer class, the .datasource is correct in code but lost on designer. What is this issue about is there a public fingi to change around and before i had the library, when i dropped a datagrid, it would already fill the grid in the designer! - more than object oriented alraedy initialised before run time. ...Show All

  • Visual Studio Express Editions Drop down box question

    I have a drop down box that is populated via SQL with department numbers ie 0110,0115,8903,8905,8910,8911. I want the user to be able to when they start typing lets say "8" I want all of the departments that start with 8 to show up in the prodown box. and lets say further along when the get to "891" only two will show up. Now if they were to start typing a number that does not exist like "7" nothing will show in the drop down box. I have seen somthing like this in a MS Access box, Is this possible to do in Visual Basic Thank you That would sound like what he wants - dropdownlist would work for the first letter but as it is a list of items and not a combobox - you can filter only on the first lette ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Where is physics???

    XNA Framework = MDX Where is game library ! Actors, Scenes, Physics, Reactors, Particles, AI, etc... XNA is not a 3D engine. XNA is a framework, a library of classes and documentation, etc. that facilitate in making games. If you want to look at my 2D Coldet code, you can view it here. http://svn.openxna.net/Xna5D/trunk/Xna5D/Xna5D/Physics/ It does require that you implement IPhysical and ICollidable, both of which are easy. ...Show All

  • Visual Studio Express Editions Ending a Sub

    Hi there, I have these IF statement and after it finds the first one which is true I want it to stop the Whole Sub. Thanks, AliQ Another alternative is: Return or, if it's a function: Return {valueToReturn} ...Show All

  • SQL Server Error browsing cube data

    I was trying to browse a cube that i had created. It however tells me its unable to browse cube data. Unspecified error. When i am creating the dimension i cannot also preview the data. How can i have thes resolved Are you a new user of Analysis Services. Did you deployed your cube to Analysis Server What exactly the error you getting Edward Melomed. -- This posting is provided "AS IS" with no warranties, and confers no rights. ...Show All

  • Microsoft ISV Community Center Forums sum if in list

    Hi! I write in Excel, not VBA. I have a long list with bank names and depost values. The list of banks is sorted based on bank names. One bank can occur several times in the list (but since it is sorted they come after each other). I want to have the sum of deposit values for every bank. this works fine except when a bank has only one occurence. Example: Citigroup 100 Citigroup 120 Citigroup 200 Rabobank 130 Abn 200 Abn 150 My formula gives me this: Cititgroup 100 Cititgroup 120 Cititgroup 200 420 Rabobank 130 420 ABN 200 ABN 150 350 etc. My formula is: =if(A4<>A3;sumif(A:A;A2;B:B);""). please help me fix the formula so that it works fine even for banks with just onc ...Show All

  • Windows Live Developer Forums Pushpin Onclick Event?

    Hi has anyone managed to handle the on click event of a push pin yet because i cant find any events for such a thing You can tell something happens because (in IE at least) you can hear the normal "tick" noise just like when you click a link, when you click on a pushpin, I need to be able to handle this even so I can action the users click on the pushpin Great example Dr. Neil! I hope there's a push to get more capabilties back to the pin in the next release - ability to easily do the pin click and the ability to easily number the pins would be great. Anyone from the VE team able to comment on pin changes in the next drop fo the API ...Show All

  • Visual Studio 2008 (Pre-release) WPF Web - Full Width + Height

    Hello, Does any one know how to make a web app fill the users client I checked all the page level parameters but couldnt find one to suite me. For a standalone app, the recommended way to go full screen is to: Set WindowStyle = WindowStyle.None Set WindowState = WindowState.Maximized Set Window.TopLevel = true You are correct that these properties are not exposed in the Internet Zone sandbox for v1. One option, depending on your app requirements: you can open a full-screen browser window using JavaScript (see sample of how to do that using window.open here: http://www.dynamicdrive.com/dynamicindex8/window1.htm ). Host your XBAP in the new window. I'd love to know more about your scenario for creating a full ...Show All

  • SQL Server SQL Server 2005 Can't save Maintenance Plans

    If work on SQL Server 2005 (German) with SP1 installed. When I create a new maintenance plan, I allways get the error message "no description found" and the plan ist not saved. When I use the wizard, the maintenance plan is fine and works. But if I edit the plan same error message prohibits to save changes. I found many threads with the same problem but I found no solution nor an explanation why this error is returned. Thanks for any assumption, where the problem might be. Worked fine for me after SP1, but then the problem showed on machines running SP2, including my laptop.  Thinking this might be the cause, I removed SQL Server from my machine, installed it, and created a maint ...Show All

  • Visual Studio Express Editions Error in Downloading

    This is a very beginner question, I am sure, but I really could use some help because it is incredibly frustrating! I am having a problem when I try to download the program I wrote called "Target Practice" from my website. I use the .htm page it automatically creates but it dosen't work by just clicking on "setup.exe" either. I publish the files directally to the site by using FTP so I don't think any files could have been left out. Whenever I try to test the download it comes up with an error message and it tells me that I am missing files and to "contact the application vender for assistance." It apparently is missing the file called "Target Practice.application" that it never made! I would like t ...Show All

©2008 Software Development Network