Software Development Network Logo
  • Windows Live
  • Visual FoxPro
  • Windows Vista
  • Visual C#
  • Architecture
  • Visual Basic
  • VS Express Editions
  • .NET Development
  • Windows Forms
  • VS Team System
  • Visual C++
  • Visual J#
  • Microsoft ISV
  • Visual Studio
  • Game Technologies

Software Development Network >> William K's Q&A profile

William K

Member List

AstareGod
cpk
invisible-man
Challe
deken_99
cdolo
fsangio
meeeeeeeeeep
Ruki76
SteeleWORX
msalters
Shalviyah
JRandJame
SRP_Lan_Group
horseshoe
Beltira
Remeard
Jeroen Vos
ram1608
chricosta
Only Title

William K's Q&A profile

  • .NET Development Generic List's AddRange/InsertRange

    Hello, I have a class that inherits from List(Of <custom>); what I want to know, is in this class, I have: public class MyClass    Inherits List(Of MyObject)    public shadows sub Add(item as MyObject)    end sub    public shadows sub Insert(index as Integer, item as MyObject)    end sub End Class What I want to know is, in the AddRange/InsertRange implementation, will these methods call the base Add/Insert methods, or will it call the Add/Insert methods that I created above through shadowing, or doesn't it use these methods at all Thanks. ...Show All

  • Visual Studio VSIP/Visual Studio 2005 SDK and open source language services?

    In the near future I would like to attempt a language services plug-in using the Visual Studio 2005 SDK (formerly called VSIP I believe); the free version, to be specific. However, since I may or may not have much time in the future to work on it, I was wondering if a non-viral open source license - something like MIT or BSD that does not propogate up the chain - would be OK. I do not care much about the particulars of whatever licenses are acceptable; anything that lets me share the source so other people can hack on it is fine by me. Any-one know the answer to this While the web site continues to show ...Show All

  • Visual C++ Code used to clear text boxes

    im new to c++, and i would like to know the code that you need to use to clear text boxes. regthesk8r wrote: im new to c++, and i would like to know the code that you need to use to clear text boxes. SetWindowText can be used with an empty string. ...Show All

  • Smart Device Development Cant find aygshell.lib for MIPS

    Hi Im trying to develop a full screen application for a MIPS based CE5 device, using eVC4, but I simply can not find aygshell.lib anywhere I got it for ARM in the Pocket2003 SDK TIA Lars Hi Lars The OS design for your MIPS device does not seem to support the AYGShell APIs. The aygshell.lib is only includes in a Device SDK if the OS supports this functionality. If your're doing the OS design for the device, make sure you include the "AYGShell API Set" in your design.    If you buy the devices: Contact the vendor and have him include the AYGShell functionality in the OS. Let me know if this helps. M ...Show All

  • Visual C# Creating a C# project programmatically

    I know how to create a C# solution and implement classes and save the solution and build it etc. I am looking for a method of doing all these steps in a program. Is there a way I can create a solution/project, add source files to it, save it and build it within another program, which could be a C# program. Something like this: CSharpSolution mySolution = new VisualStudio.CSharpSolution(); mySolution.CreateProject("myCSharpProj"); mySolution.Project.Addfiles("file1.cs"); mySolution.Save(); mySolution.Build(); Any help is appreciated. Thanks, J Visual Studio is programmable, we have an aut ...Show All

  • Software Development for Windows Vista Beta 2 question: Why did local services change?

    I have a question as to why the ExternalDataExchangeService class was introduced in Beta 2. What is its function that is a benefit over, or difference from, the way we added local services in Beta 1.2 For example, if I had a local service named Foo, which implements the IFoo interface (the IFoo interface is marked with the DataExchangeService attribute in 1.2) and I wanted to add it to the runtime I just did: Foo myFoo = new Foo(); workflowRuntime.AddService(myFoo); Now, in Beta 2 I see that we mark the local service interface with ExternalDataExchange attribute. Then as before, with Foo implementing the IFoo interface: ExternalD ...Show All

  • .NET Development TCPClient

    I want to ask a question about using TCPClient. I can connect my localhost with this code                       Istemci = new TcpClient("localhost",1234); but I want to connect a computer which in my localnetwork(ex. that's ip 10.6.1.9). How can i do that with TcpClinet( ) code. Thanks. ...Show All

  • SQL Server Replication with filter

    Hi All, I've done my replication successfully between SQL Server 2000 and SQL Server CE. But how if I want to filter my replication For example :- At Table1 have 5 field which is UserID,Month,Year,Price,ItemCode I want to filter replication data with UserID and Month and Year. How can I do it Thank you!! when you define the publication on the server, there is a step where you choose various articles to be included in the publication. you can achieve what is called "vertical filtering" by choosing only those columns from a table that you want replicated to the subscriber. note that you ...Show All

  • SQL Server Build Question

    Hi: I am confused with the build versions in SQL server. When I install in my XP local machine...when I say select @@version i get the following... Microsoft SQL Server 2005 - 9.00.1399.06 (Intel X86) Oct 14 2005 00:33:37 Copyright (c) 1988-2005 Microsoft Corporation Developer Edition on Windows NT 5.1 (Build 2600: Service Pack 2) In my Enterprise 2003 server I get this... Microsoft SQL Server 2005 - 9.00.1399.06 (X64) Oct 14 2005 00:35:21 Copyright (c) 1988-2005 Microsoft Corporation Enterprise Edition (64-bit) on Windows NT 5.2 ( Build 3790: Service Pack 1) I am concerned with the compatibility when I am using servi ...Show All

  • Smart Device Development Newbie :: Urgent Question

    I'm totally new in Visual Studio. Currently, I'm trying to install free sample code from msdn, it's Northwind Pocket Inventory - Logistics for Windows Mobile 2003-Based Pocket PC. After I set all the db and other, finally I can run the program in an IPaq except the web service one. I'm rather confused why the web service doesn't work, because I've tried to run it in desktop and it goes well. Is IPaq doesn't support web service or maybe there is another reason about that I really hope someone could give me some solutions. The second thing to ask is that the same program I tried in emulator but it doesn't work at all, the message is something& ...Show All

  • Software Development for Windows Vista Beta 2.2 - accessing current workflowRuntime woes.......from an ASP.NET Web Service

    Hi all, (specifically as a ASP.NET ws) In beta 2 - I used the ...WorkflowRuntime.Current a fair bit in this solution. It's not there anymore - I've seen some posts on some 'workarounds' or new ways to do it (i.e. instantiate your own runtime in the global.asax and store it somewhere safe - e.g. Application, static class etc.) Here in lies my problem. 1) I created a standard sequential workflow and added the WS receive + WS response shapes - bound them and added a couple more code shapes. Assigned a simple interface to the WS Receive Activity. 2) Publish as WS....all good :)...so far.... 3) Add a global.asax and add code to ...Show All

  • Visual C# Any help For Graduating Project .. Need Just The Idea

    hello .. I'm senior year at university .. next semester I have to build my project .. unfortunately my supervisor doesn't help me to choose suitalble idea ( in my university .. no one of instructor knows or even cares to know about VS C# !! all they know is poor DBS built on non-microsoft product !!) anyway .. I want my project to be worked under .Net framework ( esp C# or ASP.net with C#) thank for being care Wow, come up with your own problem, seems crummy... My senior year, we were actually given a business problem and it was up to us to figure out what technology to use and what needed to be realized t ...Show All

  • Visual Studio Need to run CLEAN SOLUTION to get a new compilation

    I've been working with vs2005 for a few months - all ok. 'Suddenly' when I hit F5 to run in debug mode I get the previous build - without debug info. When I run Clean Solution and then F5 everything is ok... Any ideas thanks, John John, Did you accidentally change your build configuration from debug to release Depending on your profile, you might have a dropdown in one of the toolbars that says "Release". Try changing that to "Debug". Neil ...Show All

  • Visual C++ Sorted

    I am using VC++ Beta 2, with Windows Forms. I want to run a process in the background, leaving the UI responsive, and also to update a text box on the UI with interim progress data from my process. I have found a way to initiate a worker thread on the NET - as below. using namespace System; using namespace System::Threading; public ref class ThreadExample { public : static void ThreadProc() { //Do stuff } }; void RunProcess() { Thread^ oThread = gcnew Thread( gcnew ThreadStart( &ThreadExample::ThreadProc ) ); oThread->Start(); } RunProcess starts the thread fine, ...Show All

  • Visual Studio Team System Error 28704.Unable to connect to the Analysis server.

    I just can't figure this one out - two tier installation where I have followed the setup manual to the letter (i think). Analysis service is in fact running, I can even connect to it from a mgmt studio installed on the application tier. I tried watching the network traffic to see where it might be getting confused, but the servers were talking via soap, and then encrytped the conversation so I couldn't diagnose anything in particular. I would guess this is a permissions issue, but I am installing as TFSSetup, and this user is admin on both boxes + sa on sql server. Any guesses EDIT: after reinstalling everything I still get the error, but n ...Show All

©2008 Software Development Network