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

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

harvard_isaac

Member List

Mystagogue
I am Josha
rbedard
ZopoStyle
Werner Clausen
HinDRAncE
BillyB
programmer01
SouLDragooN
Douwe
Learning VB
JuKiM
CurtisDeHaven
Hazara
Jassim Rahma
sampi
Basani
Steve from adzac
Pranav Garg
AlexBB
Only Title

harvard_isaac's Q&A profile

  • Visual Studio 2008 (Pre-release) Generating two WCF services that use the same data contract

    Hi, I have two WCF Services than use the same DataContract. For generating ServiceClient I use svcutil tool. Every generated file contains the definition for my DataContract. In my case I have a conflict at compile time because two classes have the same name. Is the svcutil can do the “merge” between data contracts by not defining repeated elements How can I resolve this problem If you own both sides and want to share a class library with the data contract types in it for both services and clients, you can reference the assembly when you generate the proxy: svcutil /config:app.config /o:serviceproxy.cs /r:SharedTypes.dll http: //localhost:8000 If you want to use svcutil and create a servic ...Show All

  • SQL Server Connection Issues To Report Services

    Hello all, I just installed the SQL 2k5 standard suite of services on a w2k3 enterprise edition server. All went well except for the connection to the reporting server. I get the error below. "No connection could be made because the target machine actively refused it" I can't seem to find any information on this error and have no clue where to even start. I've done 10+ installations of this software on various machines and have not encountered this error on any of them. I have uninstalled, then reinstalled the reporting services and still no solution. All connection attempts are being made on the actual server, not from a desktop. sp1 for sql 2k5 is also installed, if that helps. Windows Firewall is off. What w ...Show All

  • Visual Studio 2008 (Pre-release) My WPF application doesn't run on a machine which has .Net3.0 but doesnt have VisualStudio2005 and its extensions for WPF/WCF

    Hello, Please let me know what are the minimum requirements for running a WPF application(using XAML) on a machine that doesnt have Visual studio 2005 and orcas Our application end users just have .Net3.0 installed on their machines.When this app.exe is run on a machine with just the .net3.0 framework, we get a msg like : "app.exe has encountered a problem and needs to close.WE are sorry for the inconvenience.If you were in the middle of something,the information you were working on might be lost." This otherwise works fine.Can you please suggest me what I am missing here Do I need to create a deployment package everytime so that all relevant dlls(w.r.t WPF) are also intalled our end user's machine.Am I missing something ...Show All

  • SQL Server Invert rows and columns (PIVOT)

    Hi everybody. I have this table that contains how many items were sold (and their value) into two departments: SellerID(PK) Year(PK) ItemsSoldDPT1 ItemsSoldDPT2 ValueSoldDPT1 ValueSoldDPT2 1 2002 10 20 300.00 400.00 1 2003 13 71 450.00 320.00 1 2004 8 4 350.00 640.00 1 2005 2 15 110.00 680.00 2 2001 3 1 130.00 100.00 2 2005 1 7 190.00 200.00 2 2006 6 9 170.00 500.00 ... ... ... ... ... ... I'm trying to write a query that puts the data present in the "Year" column as if they were in a row (column definitions)..making sums of pieces and val ...Show All

  • Visual C# can VB & C# to be used in same project?

    we are develop a project I'm using C# but my partner are using VB is it possible use 2 different language in same project if it is possible . can you let me know how we have some class and module was written by VB is it possible use that when I'm coding ( using C#) thank you very much Hi, what do you mean by app If you create an assembly i.e. DLL or EXE in VB you can use that from a C# project and acess the types and namespaces that have been defined. Mark. ...Show All

  • Visual Studio 2008 (Pre-release) Text thumbnails & zoom

    Hi everyone out there. I wanted to know if there is native support in WPF for scaling a text file, so that can I quickly get a thumbnail with the general text structure, and even support for using that visual representation like a regular image (e.g. rotate it, fade it away, etc). Thx in advance, Alan No there isn't any kind of native support but you surely could load the text into a TextBlock, ScaleTransform and do anything you want to it even before turning it into an image/thumbnail. If you truly want an image you can use RenderTargetBitmap to take any visual and render to an image. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Newbie question

    Hi all, Having some issues building the default "My Space War" project in XNA. It builds fine but dies and gives me an error prompting me to send the information back to MS. Any ideas about why this might be Thanks! It could be that your graphics hardware can't support the shader levels necessary to run XNA, and in particular the shaders required by Spacewar. XNA requires at least Pixel shader 1.1 support, and Spacewar requires Pixel Shader 1.1 and Vertex Shader 1.1 support minimum. ...Show All

  • Commerce Server How could I activate the localized display texts for the CommerceComponents

    Hi, everytime a website with an control of the CommerceComponents namespace is requested the current culture will be ignored and the user gets always the english display test. I assume that the localized texts are in the bin directory for the following cultures: - en-US - de-DE - fr-FR - ja-JP In the web.config there all the mentioned cultures listed as suppored languages. Is there any option to activate/force the localization Thanks in advance. Christian Hecht Neither the Starter Site not the CommerceComponents are localized into any languages. They are only available in English. The Adventure Works catalog is localized into the above ...Show All

  • Visual C++ trouble getting started

    I have no programming experience and I have just installed microsoft visual studio 2005. I have a book on C++, it a few years old but i thought it would give me a start on learning c++. I want to compile one of the examples out of the book. How do I do that The book is teach yourself C++ by Al Stevens. Can anyone please help me out it says there were build errors. would you like to continue and run the last sucessful build i clicked on yes and it says, unable to start program c:\documents and settings\user\my documents\visual studio 2005\projects\01\debug\01.exe The system cannot find the path specified. ...Show All

  • Visual Studio 2008 (Pre-release) Customising Web Service Proxies

    Is there any advantage to upgrading to WCF over ASP.NET/WSE3.0 web services I am working in a situation where there a number of web services all returning the same common result structure. A client application even if it has a reference to the library containing the result structure, still produces across web servuices A, B, C A.Result, B.Result, C.Result. Will WCF and the new extensions for VS2005 produce proxies referring only to Common.Result >>I am working in a situation where there a number of web services all returning the same common result structure. Not sure If i understand your question correctly. But, if you are talking about multiple implementation of the same Service running on diff ...Show All

  • SQL Server Manually Inserting Data in DateTime Field

    Using Server Explorer in VB 2005, I am manually entering data in a table in a SQL Server 2005 Express database that includes a DateTime field. I have tried every conceivable format, but no matter what I try get one of these 2 errors: 1. String was not recognized as valid DateTime 2. Operand type class; text incompatible with DateTime I have Googled this to death, but no example which involves trying to enter the data manually, say from Server Explorer. Formats tried include all datetime formats (mmddyy, yymmdd, using dashes or slashes, enclosing in single quotes or pound signs). I would appreciate if someone could please give me an example that I can literally insert without error. Andrea, ...Show All

  • Smart Device Development Lock application + screen-saver

    Hi all, How would I go about locking an application so that one would need to re-enter a username and password to gain entry again. I know thats very vague so here goes; Background: Im new to C# and developing a C# mobile app which displays confidential info to the user. Ideally, if the user has not tapped the screen for x minutes, the application should lock itself and not permit the user to see what it was displaying. This functionality should also be available as an icon incase the user voluntarily wants to lock the application. This are my thoughts on accomplishing this: Have a thread that monitors for taps and if the time between last tap exceeds a certain threshold, then the screen lock is called (Is this possible in C# ). If the use ...Show All

  • .NET Development ActiveDirectory services VB.net 2005 obtain group membership for a patrticular user

    Hi, I'm trying to develop a program in Visual Basic.NET 2005 that will manage user accounts on remote computers. These computers are not part of a domain and do not have active directory running on them. They are running under their own workgroup and behind a firewall.. To workaround for the firewall I managed to develope a service app that resided on these computers and comunicated through IP and Port. Surely the port is open for me... Most of the functioanlities are working fine, like adding new user accounts, modifying, deleting, querying users,groups and so forth.. The problem I'm having is obtaining group membership for a particular user. The code is provided below: (the inCount is alwayz equal to zero) I'm not sure if I am doin ...Show All

  • Software Development for Windows Vista Am I using GetFinalPathNameByHandle incorrectly?

    Hi, I'm looking into GetFinalPathNameByHandle and found a strange problem when accessing remote Samba shares. This is on RC2, build 5744. I created three symlinks, one pointing to a Windows XP SP2 share, one to a NT4 SP6 share, and one to a Samba 3.0.23a share, like this: > mklink /d win-xp-box-syml \\win-xp-box\share symbolic link created for [...] > mklink /d win-nt4-box-syml \\win-nt4-box\share symbolic link created for [...] > mklink /d samba-box-syml \\samba-box\share symbolic link created for [...] Using Vista's Explorer, all symlinks are working fine. I can double click them and change into the remote machine's shared directory, be it XP, NT4 or Samba. The same is true for cmd. I can cd into all three directori ...Show All

  • Visual Studio Express Editions Connecting VB Express 2005 to ODBC 3.51

    Hi Im a new guy at VB but im loving it :) im having some trouble in connecting an MYSQL DB in the Visual Basic Express 2005. I use the wizard for adding new connection but the pre configured connection doesn’t apear, only the connection driver to Access Database and SQL Server driver. But the driver (and connection) to Mysql server isn’t there.Can some one help me Best regardsFrederico Pereira Hi i already went to that website to and already made that connection.I have the MYSQL ODBC 3.51 installed. But the problem is that i need the Connection from the menu "DATA SOURCES" cause from there i can manage tables etc. It seams to be more simply sor a newbie like me. And of course i take all the advantage of all funcions of the V ...Show All

©2008 Software Development Network