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

Software Development Network >> sepehr.Beigi's Q&A profile

sepehr.Beigi

Member List

rolf cerff
arhoads76
Rustum
Franji
SThorpe
Trushar
Peter Poirier
SatYr_84
Kevin Scheidt
TobyKraft
Naren Datha - MSFT
loydmoseby
Manu_ivanohe
mzKitty
Blair Allen Stark
Lee Eden
ahmet_yusuf
cmenge
oconnoradrian
ken w
Only Title

sepehr.Beigi's Q&A profile

  • Visual Studio Express Editions External Tools

    In Visual Studio 2003 in the menu Tools/External Tools... I add a menu to the File Explorer:   Title: Explorer Command: C:\Windows\explorer.exe Arguments: $(ProjectDir)   In VS.NET 2003 works fine, but when I do the same in Visual Basic 2005 Express Edition the external tool not works, appears a MessageBox with this message:   "The path 'C:\Projects\WindowsApp1\\' not exists or not is a directory"   At then end of the path there are two backslash but I don't know why. Anybody knows how to resolve it     The same applies to VS Standard - t ...Show All

  • Software Development for Windows Vista XAML to IL not via C#

    Wouldn't it be cleaner to have a XAML .NET compiler, then going from XAML via C# to IL Certainly.  But C# is not a required intermediary for XAML workflows. Instead a XAML xml format file can be read into a .NET type in memory and executed on the workflow runtime. XAML is simply a serialized representation of the .NET type that represents the workflow definition. When a workflow is represented in C# it is the executing of the compiled C# that creates the workflow definition .NET type in memory. Regards, Paul ...Show All

  • Visual C++ program execution from the ide

    I just loaded VisualC++2005 and have not been able to execute the code I have written. In C++6, there was an exclamation point that executed the code. I have not been able to find the " ! " or any other way to execute my code.   Thanks, Roger The exclamation mark in Visual C++ 6.0 did "Execute Program" which has now been replaced by "Start without Debugging", in Visual C++ 2005, under the debug menu.  Both of these can also be reached by hitting the CTRL and F5 keys simultaneously.  Notice on the Visual C++ toolbar there are two dropdowns: one that says "Win32" and th ...Show All

  • Visual Studio Team System Where to find a reference for the Team Foundation-API?

    I downloaded the VSIP-package, but there is no reference either... So where do I find it Daniel, You can find this on vsipdev.com, however, it takes some navigating once you sign in. I recommend signing in to vsipdev.com then navigate to the following URL: http://affiliate.vsipmembers.com/affiliate/downloadfiles.aspx You want to download the one labeled Visual Studio 2005 SDK. Ed blog ...Show All

  • Visual Studio Where can i get more documents of DLS Tools for developer?

    hello everyone , i am chinese, first, please excuse my weak english; i had work with DSL Tools ,but i am getting a trouble to DSLDD files defines, who can help me ,and indicate me where i can get more documents for developer thanks Matt.Lin There is also some prerelease documentation available now: http://blogs.msdn.com/robcaron/archive/2005/12/22/506897.aspx ...Show All

  • Visual Studio Team System Team Project Creation Failed

    I installed beta 3 server and connected. I then went to create the project "test3" which fails. Here's what i get (see below). I connected/logged in as administrator user on the team foundation server (TEAMSERVER) machine. Is this the problem Should i have logged in as tfssetup or someone else As a side note, i can't login as anyone (i've tried all of the users - i think) into my sharepoint site on the server now. Thanks, Ted Error Insufficient permissions on the Windows SharePoint Services at http://TEAMSERVER:8080 to create a new site.  Explanation The permissions granted your user name and ID on the Windows SharePoint Services at ...Show All

  • Visual C# Export to PDF

    Hi, How can I export some data to PDF files Thank's Alexei Hi, I have checked iTextDotNet... It doesn't work clearly... It have some bugs and it works for some data slowly... So I have found another solution of Gios Pdf.NET... Thank's to Gios for this solution... It's C# library and also it open source... You can get it from www.paologios.com ... Thank's Alexei ...Show All

  • Visual C# SoundPlayer won't play whole .wav file

    I am trying to play wav files sequentially using SoundPlayer. I am using the PlaySync method. According to the documentation, program execution should not continue until the wav has finished. I have a test case with a messageBox call after PlaySync. The wav only plays for half a minute to a minute of any song before it stops and shows the MessageBox. I would like to avoid using WMP; I want to keep resources to a minimum. I appreciate any help. An event that would let me know that the wav is done playing would be fine, too. Here is my test case: SoundPlayer SP; private void Form1_Load(object sender, EventArgs e) { SP = new So ...Show All

  • SQL Server Creating report based on parent-child dimension

    Hi I have a problem to create a report based on a parent child-dimension When I go to reporting services, and I create a new report based on a cube, I drag my parent-child dimension to my data-layout. Then the dimension is immediatily ragged down. Anyone an idea to solve this. Does anyone have an example to create a report based on a parent-child dimensions Thx ...Show All

  • Windows Forms Raising Events / Copy - Paste

    I have a main menu in my form class with Edit->Copy and Edit->Paste. I assigned the normal shortcut keys of Ctrl+C and Ctrl+V to these menu items. However, the Form that gets notified when these events fire can't really handle the events. I want the form's "ActiveControl" member to be notified of the event so that my individual windows that  ...Show All

  • Visual Basic How to Get Optional Parameter Names automatically typed through Intellisense

    I'm having a method which accepts more then 10 Optional parameter. In calling code, i want to give facility to the person using my class to get optional parameter names directly through intellisense. is there any way to accomplish this   Thanks for providing this Link. I have posted it, below given is Problem description and proposed Solution http://lab.msdn.microsoft.com/ProductFeedback/viewfeedback.aspx feedbackid=fd376077-2a04-45dd-953c-f450d12b2a61   The benefit of using optional parameters is that we can pass parameters in any sequence. If there are mul ...Show All

  • Windows Forms Share one form across several application

    Hello, I wonder is there a good solution to share one startform across all the applications without including this form every time in the app. it's kinda like a dll method where we only need to reference to it. and also a change in the form will reflect across all the applications. (moved to winforms forum) A form is just a class, I'd expect you could put it in a dll and call it from there. ...Show All

  • Smart Device Development looking for simple vs2005 example, c# calling native c

    Can someone point me to a tutorial or howto set up a vs2005 project that I can have a simple pocketPC c# project that calls a simple native c routine like: #include < stdio.h> void exchange ( int *a, int *b ) {     int temp;     temp = *a;     *a = *b;     *b = temp; } Thanks This article is for eVC but you can do the same in VS 2005 in a very similar fashion http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnnetcomp/html/PInvokeLib.asp ...Show All

  • .NET Development WSE 3.0 and ASP.NET 2.0 Membership

    Hi, In the past I have used a custom UserNameTokenManager class to authenticate username / password combinations is WSE 2.0.  Is there a way to tie into the ASP.NET 2.0 Membership provider for authentication and authorization using WSE 2.0 without writing custom code for WSE 3.0   Or do I still have to manually write the custom UserNameTokenManager Thanks, Jon Yes, you can use the <authorization> element. See this link http://msdn.microsoft.com/library/ url=/library/en-us/wse3.0/html/6f194c77-6fe3-42a2-88ee-0599d4b4779c.asp frame=true Otherwise if you want to customize this you need to wr ...Show All

  • Visual Studio Registering visual studio add in through another dll

    Hi All, I have created a visual studio 2005 addin (say MySecondAddin) to open a given solution filename in visual studio, by using C# language. But I want to use this addin from another addin (say MyFirstAddin). I don't want to use MySecondAddin directly. MyFirstAddin should load/register MySecondAddin nad use it. How should i do this There is one more restriction in this, that MyFirstAddin is simple MFC dll created in visual Studio 6 and MySecondAddin is .NET assembly with "register for COM interpop" option checked. To use simple .NET assembly (class library), one can use #import "MySecondAddin.tlb" It works fine. but i ...Show All

©2008 Software Development Network