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

Software Development Network >> m.shuhrat's Q&A profile

m.shuhrat

Member List

krollenhagen
informat
Strezi
nobodyman
Shirvo
creaturita
LeahGarrett
Bob Bedell
pfongkye
MongoBongo
chawacho
JoseRF
jdevito
Jef Patat
Jason Jaegers
Daikoku
flarebol
Allen Razdow
vakman
Jagjot Singh
Only Title

m.shuhrat's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. external libraries with XNA

    Can external libraries written in C# be used with XNA Does Xbox 360 support dlls   Jim Perry wrote: I would say as long as the DLLs contain functionality that's found in the Compact Framework (since that's what is being used for the 360 version IIRC) you won't have a problem.   O'rly So would I be able to use OGREnet and have it work with the 360 I'm not sure if it uses the compact framework though. I don't have any C# experience ...Show All

  • Windows Forms how can i print the data of a datagrid placed on a form using windows application project, developed in visual studio.net 2003 u

    how can i print the data of a datagrid placed on a form using windows application project, developed in visual studio.net 2003 using vb.net. how can i print the data of a datagrid placed on a form using windows application project, developed in visual studio.net 2003 using vb.net. This question has been talked many times ,you can find many useful answers from this forum http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=47524&SiteID=1 ...Show All

  • Visual Studio Express Editions Install Not Working

    Everytime I run the install for Visual Basic Express Edition it says I must uninstall Microsoft SQL Server Express Edition, which I thought I got rid of a long time ago. It doesn't show up on the Add/Remove programs list. I tried to clean the registry of anything that contained "sql", but 5 or so entries can't be deleted. I tried help page on Microsoft's website and all it did was give me a headache. How do I uninstall something I don't have I really want to get this thing working, can anyone help me out If you look at the FAQ for the site and on the Visual Studio Express home page at microsoft you will find a link to a tool that will remove the leftover beta and ctp versions of the softwar ...Show All

  • Visual Basic Ecen If DragDrop Registration Succeeds Drag Drop still fails!? - Help!

    I have an application I've been running under Visual Basic 2003 for some time now without error. Recently I purchased Visual Studio Professional 2005 and allowed it to convert my project to VS2005. I ran the application and receive "System.InvaliedOperationException: DragDrop Registration did not Succeed" In my application I found that if I change the AllowDrop for my Treeview to False everything works properly. Th moment I change AllowDrop on my Treeview to True I receive the above error. I know this was a Bug in Beta2 but on a purchased production copy Anyway, has anyone seen this error and if so what was done to resolve the problem. Regards Hi, I have a similar problem, can you advise on the b ...Show All

  • Software Development for Windows Vista Issuing Managed Cards Via A Microsoft Certificate Authority

    I have a Windows 2003 Server with Certificate Authority (CA) setup for my organization and with the release of the Microsoft .NET Framework 3.0 I am trying to find out how I can issue/create certificates for use in CardSpace that have the logos, etc. Is there any documentation/walk-throughs on how to create certificates with logos using Microsoft CA that can be used by managed card providers Any guidance would be appreciated. Currently, Server 2003 can't create EV Certificates yet. (and EV is needed to see the Logos) I know that the process is a reaaaaaaal pain to make logo certs with 2k3 Server, but I'll see if there is a document I can refer you to. g Garrett Serack | Pr ...Show All

  • .NET Development App config setting to force 32 bit execution for .Net 2.0 apps

    Hi All, We are using some legacy third party components which only have 32 bit versions of it. We need to force our .Net application to run in 32 bit on x64 environement. We do not want to make changes to build process and we are building as "Any CPU" options. Is there any configuration level setting (Similar to forceRuntime setting) that forces application to run in 32 bit mode Thanks for Help Salim You can run all the applications on an IIS 6.0 server in 32-bit mode. See this URL: http://support.microsoft.com/ id=894435 no need to change anything in your build process but this forces all the applications on your server to run in 32-bit mode. The only side-effect that I have foun ...Show All

  • SQL Server Concatenating Fields With NULL Values

    Hey everyone, This is probably a very simple question, but I am just stumped. I am storing different name parts in different fields, but I need to create a view that will pull all of those fields together for reports, dropdowns, etc. Here is my current SELECT statement: SELECT m . FName + SPACE ( 1 ) + m . MName + SPACE ( 1 ) + m . LName + ', ' + m . Credentials AS Name , m . JobTitle , m . Company , m . Department , m . Address , m . City + ', ' + m . State + ' ' + m . Zipcode AS CSZ , m . WorkPhone , m . FAX , m . Email , c . Chapter , m . Active , s . Sector , i . Industry FROM tblMembers m LEFT OUTER JOIN tblChapters c ON ...Show All

  • SQL Server how to install SQL server as a service?

    as the qn says, how do i do that need it to be always ON. i wanted to ask if i can set SQL server to start as soon as my system starts so that it is always on. I think your reply answers my qn. will try out the command ...Show All

  • Visual C++ Asked for VC 7.1 libraries when compiling a project in VC 8

    Hi folks: I encountered a problem when I was compiling a VC++ 8 project convered from .NET 2003 in Visual Studio 2005. When the process came down to link stage, the VS 2005 IDE asked for some version 7 VS libraries such as "mfc71.lib", "mfcs71.lib", "libc.lib", etc, which are not included in VS 2005. Could anybody provide any hints for cracking this problem. Thanks a lot in advance. Jason Hi:      I'm having the same issue (linker complains it cannot find mfc71.lib on a project converted from VS 2003). I want to tell the linker to use mfc80.lib instead. I've tried to indirectly to do so, by going to the project settings and re-setting (bac ...Show All

  • Visual Studio Team System Visual Studio does not replay check box Javascript actions

    Is there a known issue with VS2005 not playing back HTTP requests correctly, if the pages have checkboxes that were enabled during the initial recording I used Mercury LoadRunner to copy and paste values for 'form parameters' that were missing, when I recorded using VS2005 and Fiddler. ...Show All

  • .NET Development XmlSerializer doesn't serialize attribute on List<T> subclass

    Hi, I'm having a little problem with the XmlSerializer... I have a class which inherits from List<T>, like so : public class SampledList<T> : List<T> { private SamplingTypeEnum samplingType = SamplingTypeEnum.RandomNoRepeat; [XmlAttribute()] public SamplingTypeEnum SamplingType { get { return samplingType; } set { samplingType = value; } } public enum SamplingTypeEnum { Sequential, RandomNoRepeat, RandomWithOccurence }; } When I serialize an instance of this class without specifying any attribute on the member using XmlSerializer, the "SamplingType" property is never serialized. All of the list members are serialized correctly. Am I missing something Edit : I just saw that this problem was already ment ...Show All

  • .NET Development Retrieving an Access table' structure

    Anyone could help me in figuring out how to programmatically understand the structure of an Access table I mean, given a DB connection and the name of a table, how to determine: - the name of the fields of that table - the type of the fields - any eventually relationship between the fields of this table with others in the DB Thanks a lot, Davide I have working code for you to retrieve the datatable structure. I'm at the office right now, give me some time. When I'm at home I'll search for the code and modify it to a easy to use library. ...Show All

  • Smart Device Development WCE_FCTN and WinCE 5

    Hi, I need to used in my code the function : WCE_FCTN but i've the following error during compilation for WinCe 5 device: Erreur 1 error C3861: 'WCE_FCTN': identifier not found c:\Documents and Settings\tlamy.PICKUP\Mes documents\EVC4\Reveil_WinCE5.0\Reveil\Reveil.cpp 179 When i compiled this code for WInCe 4.1 i've no error. Does this function exists under WinCe 5.0 and if it not exist how could i replace it to get system time in Seconds Thanks. thanks for your answers, I'm using the CeRunAppAtTime function to wake up an application any 24 hours, when the apps is launch i need to get the system time and add 1 days to it. to do that i use the following code : ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Creating and rendering a YV12 Texture

    Hi all, I'm using Direct3d + C# I want to do 2 things: 1) Create a YV12 texture. 2)render a YV12 information on it. choclate for the man who helps me :) If your card supports that texture format as a render target, then it's pretty straightforward. Just create the texture and bind it as a render target, then start rendering over it. However, I've never heard of YUV render-target support on PC before. If you have YUV support but not render-target support for YUV format, then you can use D3DXLoadSurfaceFromSurface() to transfer and convert rendered surfaces to your YUV surface, but it's not gonna be a real-time solution though... ...Show All

  • Software Development for Windows Vista Does WWF itself be totally written in dotNet (C#), or written in C++?

    Does WWF itself be totally written in dotNet (C#), or written in C++ Are you asking if you can write a workflow in C++ The answer is yes - you can build a Workflow or an Activity (since a workflow is an activity really) in any language that targets .NET - C#,VB.NET, C++/CLI, JScript.NET, etc. But the designer support is only available for C# and VB.NET. I could see reasons to do activities in C++/CLI when you are integrating an activity with a C++ library or API. ...Show All

©2008 Software Development Network