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

Software Development Network >> Maciej Koper's Q&A profile

Maciej Koper

Member List

John Sudds - MSFT
MikhailGol
b-man
Sergei Kitaev
rohit nagesh
Terry Montgomery
IBRAHIM ERSOY
patriot074
Javier Martinez
Jonathan Stanton
jon_c04
Glenn Wellington
Urlik
meighlough
Philippe Galipeau
WebSigMan
Alex Terem
Michael Collins
hollow
detzX
Only Title

Maciej Koper's Q&A profile

  • Visual Studio 2008 (Pre-release) TCP error code 10061: No connection could be made because the target machine actively refused it.

    Hi all, I'm hosting a WCF service in a windows service. I can view the service test page using http://localhost:8000/myservice1 locacally. And I can view the service test page using http://mytestsite.com:8000/myservice1 remotely via internet. Now to authenticate a client with user name and password.  I added the following to the service configuration file: < security mode = " Message " >< message clientCredentialType = " UserName " /></ security > 1. Then I could only view the test page locally NOT remotely.  2. My client which is running remotely keeps getting the error " TCP error code 10061: No connection could be made because the target machine actively refused it ." I specified client's creden ...Show All

  • Windows Forms Application.Run()

    Is Application.Run() equivalent to the following code snippet Application.Run runs an instance of the application/class. Application.DoEvents() is something different, it processes all messages in the queue but calling it programmatically may have some undesirable effects which even Microsoft don't recommend using unless you really have to for some reason ...Show All

  • Microsoft ISV Community Center Forums Compatibility Issue Excel 2000 and Excel 2003

    I wrote a macros for a customer in Excel 2003. He didn't tell me he used Excel 2000 until after the project and like an idiot I forgot to ask. The macros will not run on his version of Excel 2000. A compile error shows up. So he got a version of Excel 2003 and the macros will still not work for him. I have tested this macros on other machines using 2003 and they all work correctly for me. I live in the US and the customer lives in the UK. When he runs the macros it immediately goes into the debugging window and highlights a bit of code that simply references the path of the existing folder to a variable. The exact code is: DestFolder = ThisWorkbook.Path & "\" There is a compile error with a message that the data fold ...Show All

  • Visual Studio Team System CTP 7 and RTM Data Generation - Regular Expression

    I realize that the RTM version will be available soon, but I've found that Regular Expression is missing from the CTP 7 Data Generator type list. Will it reappear in the RTM version , Lee Alle, I appreciate that you posted, and I was not angered--just annoyed. I expected something like, "Hey, Lee. Thanks for the post. It seems you may have discovered a bug. I need a few more specifics to try to recreate it...." Instead, I got, ...the solution is that there is no problem. Regardless, I found the solution and posted. Cordially, Lee ...Show All

  • .NET Development .NET Directory Services classes - Bug?

    I am currently using Visual Studio 2005 Pro and am trying to make use of some of the Directory Services classes. In particular, the ResultPropertyCollection from a SearchResult is meant to expose the item property which can then be passed a string key to return the value of that key. However, this property is not exposed ! One of the samples provided Basic Directory Search Technology Sample has the following code snippet: foreach (SearchResult result in results) { Console.WriteLine("Path:\t\t" + result.Path); Console.WriteLine("Display Name:\t" + result.Properties["displayName"]); Console.WriteLine("Name:\t\t" + ...Show All

  • .NET Development Invoke exe from Windows Service

    I want to invoke an exe from Windows Service. I had tried using system.diagnostics.process.start but it is not woking. Is that any idea..to do this......... Please help me...... Thanks in Advance... Regards, C.Babu. Also can you post the exception which you are getting http://DotNetWithMe.blogspot.com vikas goyal ...Show All

  • Visual Studio Team System Team Suite and Visual Source Safe

    Hi, I have Visual Studio 2005 Team Suite and I want to use it with Visual Source Safe 2005 but it seems that VSS won't integrate int VSTS source control menu like it does on the progessional version of VS2005. Why Vlad It is possible to integrate VSS for source control by selecting it in Team Suite - Tools - Options - Source Control - Current Source Control Plugin. When you do so, you will be missing out on many features like integration of source control with other TFS services of Workitem Tracking, Reports etc. To use these it is necessary to use Team Foundation Version Control (TFVC). You can migrate your source control from VSS to TFVC using a utility provided with TFS. ...Show All

  • Visual Basic How to cut the path down???

    Hi there! Please help me! I'm using an OpenFileDialog to add files to my application, but I have a problem: The value of the property OpenFileDialog1.FileName contains the path and the nam eof the file, how can I cut the path down to know the name of the file What I exactly want to with that: I select a file in the open file dialog; I copy the file to a specified directory; Now I need to know the file name to find it in that directory! The renaming of the file is not good for me, because I have to keep the original file name! Thanks for the comments: Aron http://msdn2.microsoft.com/en-us/library/s ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Umm now what?

    I have downloaded all of the programs and It has no errors. I've reseted my computer alot and I can't find where to launch it.Help me please I'll assume you downloaded the March CTP of XNA Build. If so: 1. On the start menu, there should be a Microsoft XNA Build System CTP entry 2. If you open VS, there should be a XNA Build Project in the New Project dialog I'm not sure what your intent is but to be clear, these bits are totally different than the XNA Game Studio Express product that was announced this week (its first beta won't be available until Aug 30). The XNA Build CTP bits are designed for professional game studios, so likely won't be of much interest to hobbyists. Amy ...Show All

  • Visual C# Working With DirectoryInfo to Move Files

    Im trying to use MoveTo and a generic way to rename the files. but i need a way of iterating through the list, i had somthing the other night and it got lost but it was somthing like this DirectoryInfo di = new DirectoryInfo("FILE PATH"); foreach (FileInfo fi in di.FileInfo) { do stuff } but i know that doesnt work, does anyone have a way of getting the list of files, then iterating though that list heres what i got private void button1_Click( object sender, EventArgs e) { DirectoryInfo DI = new DirectoryInfo ( "C:\\Roms" ); StreamWriter sw = new StreamWriter ( "C:\\txt.txt" ); foreach ( FileInfo file in DI.GetFiles()) ...Show All

  • Smart Device Development Restricting which rows are editable in a NETCF textbox

    I've made a custom textbox with a certain background. In order to the textbox higher than normal I set the property multiline to true. The row above and below are showed since the textbox is higher than normal. But I only want the users to be able to edit the middle row. Also the cursor is positioned on the top row. I don't want the users to be able to move it away from the middle row. How do I accomplish this. /Lars This cannot be done with the TextBox control easily. You will need to play some tricks with rendering to make it appear that there is only one control, but that the top and bottom lines are actually Label controls, or something like that. I can't really provide details unless I had much mo ...Show All

  • SQL Server FTP Connection Manager: Set FTP password using a variable

    Hi, I want to setup an FTP task that is portable in the sense that all it's connection parameters are stored in variables. I can create expressions for properties ServerName and ServerUserName but not the ServerUserpassword.  Is there an property that I missed, there seems to be properties for everything else except the key piece of info, the password. I could create a script component using the FtpClientConnection method as a last resort but would rather not. Any ideas Thanks Hi, Can you double check this syntax, please It looks like that example doesn't match syntax provided! I have tried several combinations of this parameters but neither didn't work! Did you get solved this prob ...Show All

  • Visual Studio Rename a website through IWizard

    I have a template that contains 2 projects: a website (Proj1) and a class library(Proj2). The template successfully creates the solution but the website name and solution name is always Site due to the vstemplate shown below. How can I use the IWizard to rename the website and/or the solution name Currently I have a RunStarted event that pops up a form and asks for user input and that is what I want to rename the website to. I have a root.vstemplate that looks like the following: <VSTemplate xmlns=" http://schemas.microsoft.com/developer/vstemplate/2005 " Version="2.0.0" Type="ProjectGroup"> <TemplateData> <Name>FR Solution</Name> <Description>Solution for Web ...Show All

  • SQL Server Datasource-Microsoft Visual Studio

    Hi I am new to all SQL Related. I am trying to create a datasource to our old database we used in the company to write reports on the data. when I create a new data source and enter all required info, when testing the connection, i get a reply that I do not have the necessary permissions to use this object, although my account is specified as an administrator can somebody please explain this to me. Hi Hanel O, Try posting this query to the MSDN SQL Server Data Access Forum: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=87&SiteID=1&bcsi_scan_A9C07E6225287F19=z5cf+RkCipiHryeey+QUUQYAAAAmrYMB&bcsi_scan_filename=ShowForum.aspx Also here is the MSDN SQL Server Forum main page, wh ...Show All

  • Visual C++ Message at stopping the debug.

    Hi, all. When I stop debugging my app I'm getting a massage in output window: The program '[10484] FibIm.exe: Native' has exited with code 3 (0x3). What does it mean and now to deal with it Is the program terminating or are you aborting the debug process. In the first case you have control over the returncode, in the second case the returncode is set by the aborting procedure and need not to be 0. ...Show All

©2008 Software Development Network