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

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

Dongwei

Member List

xuyca
wjwjwjwjwjwj
idoprz
cvajre
glok
Will Merydith
AndyL
Alex_UTL
roychoo
SJ100
Toby Sharp
Go4More
Reno
pyerwoh
Jessica Alba
LukeRogers15
hrubesh
zaabdullah
RajMohapatra
Srinivasa Chary
Only Title

Dongwei's Q&A profile

  • Visual Studio Team System Source control plugin not installed or not available err ...

    Hi I have migrated a couple of projects from VSS 2005 to TFS. Everything went well until i tried to open the projects in Visual Studio 2005. I changed the Source Control settings in Tools/Options to Visual Studio Team Foundation Server and a message box appears saying that the "Source control plugin not installed or not available". Or at times this message comes when I open the solution file in Visual Studio. And then it says that the solution is not under source control ... asks to confirm whether to work in Temporary disconnected mode or to permanently remove source control settings ... Is there any source control plug in to be installed to use the TFS source control ... after a migration from Visual Source Safe 2005 or a ...Show All

  • Visual C++ A Couple Template Questions

    Hi folks, I have a couple questions about templates. I'm using Visual C++ 2005 Express Edition 8.0.50727.762. Is there a reason why this compiles fine: ------------------------------------------------ template <typename T, int I> struct C1 {}; template <template <typename T, int I> class C1> struct C2 {}; int main (int argc, char * argv[]) { C2<C1> TEST; return 0; } ------------------------------------------------ But this does not (replaced class C1 with typename C1): ------------------------------------------------ template <typename T, int I> struct C1 {}; template <template <typename T, int I> typename C1> struct C2 {}; int main (int argc, char * argv[]) { C2&l ...Show All

  • .NET Development VbCode Why doesn't it work.2

    Catching excetion will not make your code work, but posting the exception to the thread will allow us to understand what's wrong with your code. Not shure that this is the issue but you have a space in XML declaration: < xml. This is not valid in XML. ...Show All

  • Visual Basic using VB SDK with VB.NET

    does someone know if i can use VB SDK with VB.NET maybe a plug in that will help me or i need to use only VB... thanks I think for advise you'll need to be a bit more specific. To write a program to control a different program. I can write a program in VB.NET to control any of the office applications by adding appropriate references and using there object model - no SDK required. I'm not sure what you think you'll get out of the SDK - perhaps if you tell us what you trying to do with sufficient details then we may be able to steer you in the right direction. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Problems with user controls in DirectDraw

    How do I draw, and receive input from, a TextBox control, on a Back Buffer surface bump Allow me to explain again: I would like to put a TextBox onto the screen that the user can enter their name into. However, my app is in Fullscreen mode with exclusive access to hardware. I'm using DirectX7. Any tips ...Show All

  • SQL Server Can not created Named Calculation...

    I can not seem to create a Named Calculation on a table that I have already created a Named Query on in my data source view. Any idea why this is and if there is a work around for it TIA Wellman Which part doesn't make sense You can view a named query as a SQL view. Just like a SQL view, your SELECT statement can include any valid syntax, including other tables, calling UDF, etc. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Skin weight Transforms and Model Importer

    Hey, where do you guys store the transform matrices for skin weights in the content pipeline It seems that they are merged with the bone matrices before they are passed to the processor. Also, is there any way to extend the .X file importer class There are a lot of situations in which this can be useful. Thanks, but I loaded the vertices from a custom processor to the model (ripped them out before base.process()) and used the model bone matrices to skin it. On rendering, it appeared exactly as if the bone transforms stored in the skinning info were never added (I tested this by taking a model with skinning info such that each vertex only mapped to one bone, and then changed the bone transforms in the ski ...Show All

  • SQL Server passing varibales as SP input inside a cursor

    Hi dear, I want to assign the variable @myVar an input to my stored procedure parameter @myParam. But I want to do that my cursor code: declare @myVar as.. fetch next from crsMyTblParams into @DBparam while @@fetch_status=0 begin EXEC sys.sp_helprotect @username=@myVar fetch next from crsMyTblParams into @DBparam end close crsMyTblParams deallocate crsMyTblParams But that gives me an error 2/ another question pls: how can I use use @myDB for a varibale like this: declare @myDB ...cursor code use @myDB ...rest of cursor code ...end of cursor code Is that possible , thank you i c where my confusion comes from: I had a statement: select * from #permissions after every thing but ru ...Show All

  • Windows Search Technologies What's this forum for when there's no SDK?

    i hope i'm missing something. As far as i can gather: there is no SDK/API/Docs yet for WDS3. This means that it's impossible to develop any filters or protocol handlers (or to even know if WDS3 supports custom filters or protocol handlers). So without the ability to develop, what is the "Windows Desktop Search Development" forum for i see people asking questions - like they are developing stuff. i want to develop stuff! How are you developing stuff http://msdn2.microsoft.com/en-us/library/aa965362.aspx There's a decent number of code samples, and proper docs. Let us know which parts you see lacking enough depth, and we'll track it for the next release. Thanks for your feedback Gerald ...Show All

  • Visual C++ Hidden/Missing FindReplace/FindInFiles dialogs in VC++ 2005?

    My Find/Replace and FindInFiles dialogs have gone missing when working in VC++ 8 (2005). It looks to me like the dialogs get the focus but that they are offscreen somewhere and I have not been able to locate any registry information on the location of those dialogs so that I could bring them back onto the visible portion of my screen. Does anyone have any advice on how to get my dialogs back so I can see them Do I need to resort to reinstalling VC8 Thanks. ...Show All

  • SQL Server Multidimensional grid control for WinForms

    Hello, I have been combing the internet for hours looking for a WinForms grid that can easily bind to a CellSet returned from an ADOMDB.NET query, or raw XML/A, or in any other way data returned from SSAS via an MDX query, and I have come up empty handed. I have found several nice components that do OLAP grids, but they all come with their own OLAP engines and don't natively bind to data already in a multidimensional format. Is it possible there is NO vendor that produces a WinForms control that will allow me to easily display the results of my MDX queries in a custom BI application At this point, I'd even consider using an ActiveX control, but I can't find one of those that does the job either. Certainly I am missing something he ...Show All

  • .NET Development 401: Authorization Required

    Hello Forum, Here is something I have been struggling for very long now. I have got a Windows Application which talks to a HTTPS web service. When I run my Windows application in Debug mode, it gives me an error "The request failed with HTTP status 401: Authorization Required." Further details include it being something like a WebException.ProtocolError. But, the code works fine as a compiled EXE. Also, if I create a package for this application and then deploy the machine on a machine other than the development machine, it gives an error saying "The underlying connection was closed: An unexpected error occurred on a send." ########################################################################### ...Show All

  • Microsoft ISV Community Center Forums Unsuccessfully trying to open Power Point Viewer

    I have an Access 2003 application. I’m trying to open Power Point Viewer 2003 to display some PowerPoint slides, but can not get the Viewer executable to launch from within my Access code. I changed to the code (using VBA) in development mode to open Notepad and the Calculator executables and both open just fine when I execute the changed code. I did an install of Power Point Viewer on computer and I can run the exectuable from within the Microsoft Office folder just fine. When I copy the Power Point Viewer executable to the folder I need at another location on C: drive and try to run it, the Viewer will not open. The Viewer executable did not work on a test computer either. Do I need to run some type of setup i ...Show All

  • .NET Development .NET Remoting question: SingleCall and static variable

    I have a CacheFactory class which contains a static CacheManager member variable, if the CacheFactory is registered as single call remote object, will all the clients that using different instance of the CacheFactory sharing the same CacheManager I am investigating how to build a cache system on a server, and web applications in a web farm can access this cache server. However, I am not quite clear how to expose the CacheManager to web applications and make sure all the web applications are accessing the same CacheManager. I hope I can get some suggestions here. Thanks in advanced I just create a testing example as below, I have 2 clients open and call the remote counter object's getcounter method and pr ...Show All

  • Software Development for Windows Vista Problem with WorkflowEnvironment Class

    hello, i just start working with workflow foundation and i faced problem with WorkflowEnvironment Class the problem that i can find information about it on the help but when i decided to use it i didn't find it despite the fact that i have refrence to the runtime assembly and i was using beta 1.0 and now installed beta 2.0 so can anyone help Thanks Angel it work fine now i just removed it from add/romve instead of using the remover on the instalation and installed the new one Beta 2.2 ...Show All

©2008 Software Development Network