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

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

Bahmanbj

Member List

Minherz
Mr Papaya
Pini
clarkewu
Rajesh batchu
jrx
Doug Peck
barkingdog
Christie Myburgh
JakeBree
ideal24293
glenntoy
Christoph Roos
Ali Jannatpour
MKan
cisco0407
Pantokrator
John Bailey
kesim
markios
Only Title

Bahmanbj's Q&A profile

  • Visual Studio Team System outputDirectory doesnt seem to work

    Hi All, FOr a test project I have in VS2005, I hand edited my locattest.testrunconfig to have the following: <key type="Microsoft.VisualStudio.TestTools.Common.DeploymentItem"> <path type="System.String">cfg</path> <outputDirectory type="System.String">cfg</outputDirectory> </key> Per my understanding that should copy over the cfg folder in my SolutionDir to the Out/cfg folder in TestResults, at the end of the test. Unfortunately it copies over the _contents_ of the cfg folder into the Out folder (no cfg folder created). Am I missing something very basic here Any help would be appreciated. Thanks. AM Hi David, Thanks ...Show All

  • Visual Studio setting ProjectNode's logger

    I'm not sure if this is an msbuild issue or extensibility. I have my own Task object and Logger object. I'm setting the BuildLogger property to my logger in my projectnode object. My logger is capturing build messages, errors and warnings. My task object is using the built-in Log object (TaskLoggingHelper) to log messages. When I create a new project of my type and build my project everything works fine and I get all my messages, errors and warnings. If I build the project again, I only get warnings and errors. The messages are no longer being captured by my logger object. This also happens if I close the solution and reopen it. It seems to only work when I create a new project and build for the first time. Anyone have any clues as to why ...Show All

  • Visual C++ data structures programming

    hello, Is anyone good in data structures programming in C++ cyndyash wrote: Is anyone good in data structures programming in C++ Never heard of such a thing as "data structures programming"... ...Show All

  • .NET Development NegotiateStream...Server rejecting client credentials

    I have some networking code that I have modified to allow for using the NegotiateStream to authenticate clients when they connect. I am having a strange problem where the authentication is failing with " The server has rejected the client credentials " (Logon failure internally). The weird thing is that the same exact code works on another machine. On the machine where it isn't working I can pass the CredentialCache.DefaultNetworkCredential and it works but using a username/password/domain for an account on the very same machine doesn't work. I am running on XP not connected to a domain (both computers). I have tried using several accounts in the credential for the client auth but no matter what account is used it fails wi ...Show All

  • Windows Live Developer Forums Windows Live ID SDK, seriously

    Does it exist Is the team still working on it Is there any news at all For something that seems critical to the MS Live ecosystem being adopted by developers, it sure seems like its been all but abandoned. According to earlier statements, the SDK should either have been released by now /or/ be released in the next few weeks. What's going on Any update on the release All of the Live ID developer sites say that it will be released in Fall 2006 but I haven't found a download link for the SDK Thanks, Ed ...Show All

  • Silverlight (formerly WPF/E) Import WPF/E XAML files

    Hi, is it possible to import WPF/E XAML files in the Expression Designer I didn't find any way to do this. Michael I can't figure out how to do it. If you want to see something really strange, uncheck the binary format for file type in the preferences. I was thinking you could hack the xaml in the design file, but the design file doesn't appear to use Xaml at all! Strange stuff in there... I'd try the expression forums since they are the ones who own this. ...Show All

  • Visual Studio Team System Access to multiple excel sheets from on test method

    My test scenario requires me to access more than one excel sheets or more than one tables from one test method. Is it possible to access more than one excel sheets from datasource object Is it possible to use data source attribute to my private method (Which is not TestMethod()) Please reply. Thanks in advance. ~D Devpal, To the best of my knowledge, you can't inherently databind to multiple sheets at the same time. One way to get around this is to do the data query you're looking for inside of the Excel workbook itself, pulling all of your required data into a single table. From there, you can bind your test datasource to the new table. Here's an example connection string / que ...Show All

  • Visual Studio Express Editions Ugh....Driving Me nuts....

    I am in the middle of writing a prog that takes a file within a directory on a HD renames it to the directories name and then places the newly named file on the root of that HD. Here is the code. and I am not getting it.....I would really appreciate your help. Thanks Imports System Imports System.io Imports System.IO.DirectoryInfo Public Class Form1 Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim dlg As New FolderBrowserDialog Dim FileNamesSelected() As String Dim SelectedFolder As String 'Dim FileFound As String SelectedFolder = Me .FolderBrowserDialog1.SelectedPath FileNamesSelected = System ...Show All

  • Visual Studio Express Editions Multiextend List Box and Text box Display

    Hey All, I am trying to get the following to work: Private Sub btnAnother_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAnother.Click lblSelectionText.Text = Me .lstbox1.SelectedItem.ToString() & vbCrLf & Me .lstbox2SelectedItem.ToString() _ & vbCrLf & Me .lstbox3.SelectedItem.ToString() & vbCrLf & Me .lstbox4.SelectedItem() Now everything displays upto the lstbox4. ListBox4 allows the user to select multiple items...But everytime i make it: Me.lstbox4.SelectedItems () I get the following error: Operator '&' is not defined for types 'String' and 'System.Windows.Forms.ListBox.SelectedObjectCollection'. As is obvious I am trying to ...Show All

  • Visual C# Using OleDbConnection to populate DataGridView

    I'm a bit new to this, so pardon my ignorance if this is well-known. I've been searching the net, but no luck yet. I have an established OleDbConnection that I want to use to populate a DataGridView. I can run SQL queries on the connection and see data sets, but I would like to present a view of that data in my grid. Also, I'd like to be able to only show a fouple of the columsn, but hold on to the full data set for later use. Any pointers would be appreciated... Thanks. is the textboxes bound to the grid (in other words, is the textbox control in the grid ) if its seperate, as I am thinking and reading your reply, the values will not be updated in the dataset, you would have to update this in some way. If it was in a grid, ...Show All

  • Software Development for Windows Vista HandleExternalEventActivity - XAML only

    Hi, I am writing a xaml only workflow. xaml file looks like this: <ns0:SampleWorkflow x:Name="SampleWorkflow1" xmlns=" http://schemas.microsoft.com/winfx/2006/xaml/workflow " xmlns:x=" http://schemas.microsoft.com/winfx/2006/xaml " xmlns:ns0="clr-namespace:CustomActivityBinding;Assembly=CustomActivity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"> <ns0:CustomActivity1 x:Name="print1" NameToPrint="{ActivityBind Name=SampleWorkflow1, Path=NameToPrint}" /> <ns0:CustomActivity2 x:Name="print2" NameToPrint="{ActivityBind Name=print1, Path=NameToPrint}" /> <HandleExternalEventActivity x:Name= "ChildWFCompleted" EventN ...Show All

  • Visual Basic Help on soapsuds.exe

    Hi, can anyone help me to resolve the error i'm getting while running the soapsuds to generate dll. i'm running it VS.Net command prompt and i have 1.0 version of Framework. Error Msg : soapsuds is not recognized as internal or external command. Thanx in advance. Bab most likely you are just opening a normal command prompt, try opening the Visual Studio command prompt from the Visual Studio 2003/2002 start menu group. The environment paths for this specific version are set appropriately. ...Show All

  • Windows Forms When to use new???

    I want to create an instance of my user control but i do not want to create a new one...but when i do not add new to the statement it throws object ref not set to instance of an object.....i have Tracking.Controls.OrderLegData _OrderLegData declared on a global level...them in my frmClosing event i have this ._VendorDetail.Vendor.Name = _OrderLegData.lblName.Text; Now what i need to happen is when i click my control another form comes up and i fill in some info on this new form and click my ok button and it takes that value and puts it into a label on my control....but it does not work...I dont understand why if i add the new to the global declaration it still doesnt work but when i step through the codes the values do get set b ...Show All

  • Visual Basic Generics and Embedded Resources

    How would I approach using generic functions to return embedded resources of specific types In other words, ive got Image, text and access database (.mdb) as embedded resources. I want the generic function to return the embedded resource for image and mdb files only. Suggestions or code samples TIA, E Eric66, Are you sure there is generic functions using Visual Basic .NET to return embedded resources such as Image, text and mdb files Actually it is very hard to find this kind of proper generic functions. Could you give me your method and the specific methods or classes ...Show All

  • Visual Studio Express Editions Can't find Add Function

    I recently have switched over to c++ from VB, and am currently working through a couple of tutorials. It asks me to expand everything in my class view, right click on my form and -> add -> add function. But I don't seem to have that. I am using Visual c++ Express. What else could I do to add a function except manually code it in.   Help would be appreciated. Thanx VC++ 2005 Express has a class view...try from the top menu: View>Class View. You'll be able to expand all the pieces of your project incrementally. The Class View is an alternative to the Soultion Browser and comes up in the same area of the screen. As for "Add Fucntion, your question is unclear. Are you tryin ...Show All

©2008 Software Development Network