Software Development Network Logo
  • Visual C#
  • VS Express Editions
  • Smart Device
  • Microsoft ISV
  • Windows Vista
  • Visual J#
  • VS Team System
  • Visual Basic
  • SQL Server
  • Game Technologies
  • Visual C++
  • Architecture
  • Visual Studio
  • Windows Forms
  • Visual FoxPro

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

yuer2084

Member List

Sue_NC
Mahyar154572
wertasdff
JohanBarnard
Tom De Cort
Seven Alive
Mark Jo
Joe Szymanski
lucasjordan
SQLShare
Supergrover
Doc N Daisy Books
eduboys
VbMan_OC
Riven27450
mirosnik
king kailas
alewis28
TooTallSid
Nook Schreier
Only Title

yuer2084's Q&A profile

  • SQL Server Database group

    In sql server 2005 you have a group of databases called System Databases - Is it possible to create your own database group Best regards, Jakobsgaard This seems like a tease. Is this in grouping the works I am coming from an Oracle perspective where the world revolves around Schemas and Tablespaces. The Database group makes sense to me. Thanks ...Show All

  • Visual C++ Complier error C2666

    I am porting an app from VC6.0. The VC++ 2005 compiler doesn't seem able to disambiguate between the following overloads (I've shown an explicit cast at the call site for emphasis): class Y { public : void foo( bool b) const { return ;}; void foo( double v) { return ;}; }; int _tmain( int argc, _TCHAR* argv[]) { Y y; bool b = true; y.foo(( bool )b ); return 0; } However, if I remove the const from the first method it appears to work correctly. Does anyone know an explanation for this Is there a way round this as I'd like to avoid having to change the function signature by remo ...Show All

  • SQL Server Excel functions in calculated measures or queries

    We used the Excel function FINV() in a calculated measure in Analysis Services 2000. Supporting these Excel functions seeems to be default in Analysis Services 2005, because the ExcelMDX assembly is included in the general assemblies (although there is set no source in the assembly properties). However, it is not possible to use any Excel function in an query or a calculated measure.    Does anybody know which assembly is included and how can i get the excel functions included ...Show All

  • Visual Studio 2008 (Pre-release) Calling base properties from a [Column] property accessor in a derived class in DLinq

    Why does the following not work ... public abstract class DomainObject<TId> { TId id; protected TId IdBase { get { return this.id; } set { this.id = value; } } } [Table] public class Topic : DomainObject<int> { [Column(Id = true, AutoGen = true)] public int Id { get { return base.IdBase; } set { base.IdBase = value; } } } ... it fails with a TargetInvokationException: at System.RuntimeMethodHandle._InvokeConstructor(Object[] args, SignatureStruct& signature, IntPtr declaringType) at System.RuntimeMethodHandle.InvokeConstructor(Object[] args, SignatureStruct signature, RuntimeTypeHandle decl ...Show All

  • Visual Studio Tools for Office Word Macro for changing document comments property

    How do you create a word or VB macro to update the document comments property I need it to say something like "Updated on 05/16/2005" where it can get today's date. ...Show All

  • Smart Device Development Windows CE Remote Performance Monitor Crash

    I am working on CF 1.0 and trying to find a memory leak on my application. I am using Windows CE Remote Performance Monitor. When I select to monitor only "Memory Load", it works fine. But when I try to watch "CE Process Statistics" with an instance of my application, it halts not only itself but also the application running on the device. Is there any strategy I could get over with it, or any tool that can help to diagnose the problematic section (PDA runs with Windows Mobile 2003 Second Edition) I am afraid that this code (Remote Perfmon) isn't being actively supported at this time and hasn't been changed in years. It is due for a r ...Show All

  • SQL Server sql server connectivity problem

    i am facing following problem when running my web application SQL Server does not exist or access denied. i have sql server 2000 installed on different mechine named xenon and invocking connection from different mechine with following connection string in vb.net 2003 1. Odbc.OdbcConnection("Driver={SQL Server};Server=xenon;" & _ "Uid=sa;Pwd=1234;Database=Northwind") 2.With sqlconnection.connectionstring= "workstation id=TOSHIBA;packet size=4096;integrated security=SSPI;data source=XENO" & _ '' "N;persist security info=True;initial catalog=Northwind" ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. L-Thumb X-axis not working on controllers

    The FEB 2006 SDK controller is returning wrong values for Right Thumb X axis on Windows. The values are mapped to z-axis!. I am seening this for all types of controllers, except for XBOX360 controllers. The joystick sample from SDK shows this issue. I have been trying to get a response from MS - DX support, but have not seen any response. Can someone comment on this issue Thanks. The Right Thumb X Axis of the Xbox 360 controller is mapped to Rotation X axis (GUID_RxAxis) in DInput. That's not wrong, that's like this and that's noted in the documentation. The both Xbox 360 controller triggers a ...Show All

  • Windows Forms Install Error : The parameter is incorrect. (taskvisionsource_1.1.0.0.msi)

    When installing taskvisionsource_1.1.0.0.msi, I'm getting this errormessage: "The parameter is incorrect". The installer then rolls back. MACHINE CONFIG: * Windows Server 2003 Standard RC2    Application Server mode : IIS 6.0, ASP.NET and FPSE working fine. * SQL Server 2000 Developer Edition * Visual Studio 2003 Final Beta PREREQUISITES: * I am Administrator on the local machine.  ...Show All

  • .NET Development File System

    Does C# provide anything that allows a file system implimentation that would allow you to hook up to a database on the back end and have windows see it as a filesystem on the front end Thanks, Marty Some thoughts. Sharepoint holds its files in a database. Also WinFS promises to be a relational file system. See http://msdn.microsoft.com/data/ref/winfs/ ...Show All

  • Visual Basic Reading INI files

    I tried using search and the help feature in vb 8 but could not find any matches on this subject. I want to read info from an ini file. Is there an API I could use to get this done Or is there an easy way to do it with vb 8 Thank you. See this link- http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=418711&SiteID=1 ...Show All

  • .NET Development File Size via FTP

    Is there a preferred way to obtain the size of a file stored on an FTP server using the 2.0 Framework The best I've come up with is to contact the FTP server via an FtpWebRequest object, with its .Method property set to W ebRequestMethods.Ftp. GetFileSize. This causes the size to be returned in the FtpWebResponse object's StatusDescription property.  But its preceded by the Status Code value, so I have to parse the StatusDescription to obtain the file size.  That's no big deal.  But oddly, the FtpWebResponse object has properties that return the parsed value of replies such as the file's date of last mod ...Show All

  • Visual Studio Report References and Trusted Assemblies

    Hi, I'm referencing a third party assembly to generate images (barcodes) in a 'Local' report.  I'm getting the following error: "The report references the code module '<the 3rd party DLL>' , which is not a trusted assembly." In the previous version of Reporting Services when I could deploy a similar report on the report server but I need to add the follow to the rssrvpolicy.config file <CodeGroup class="<the class>" version="1" PermissionSetName="FullTrust" Name="<the name>"> <IMembershipCondition class="UrlMembershipCondition" version="1" Url="C:\.....dll"/> </CodeGroup> Is there a proces ...Show All

  • Software Development for Windows Vista Visual Studio 6.0 SP5 setup on Vista Beta 2 (5384)?

    Does anyone know how to get around the MDAC check in the Service Pack 5 setup of Visual Studio 6.0 For some reason it doesn't detect MDAC 2.5 or higher which it requires (even though Vista obviously has a later version - 6.0) and the setup will not continue from that point. I've tried every registry key I could think of to trick it into thinking MDAC is installed. Thanks Ted. Totally untrue - the support on Vista has been committed to by Microsoft until March of 2008  http://msdn2.microsoft.com/en-us/vbrun/ms788708.aspx I know for a fact that it runs perfectly on Vista as I have run i ...Show All

  • Visual C# strings - determining if a string has more than one word?

    Hi all, I have a need where I am required to determine whether a string contains more than one word. If the string contains one word I don't want to do anything, but if it conatians more than one word, I need to do something. Whats the best way for me to tackle this Thanks Tryst Tryst, Unless you are looking for something more sophisticated (e.g. making sure your words are meaningful matching them against some dictionary), you could proceed as follows: since a word is a sequence of characters, separated from subsequent words by spaces and other separators, you need to: 1) make sure there are no extra separators, at the head or t ...Show All

©2008 Software Development Network