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

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

azastawski

Member List

mcline700
dfgdgdfggfghg55rrgr
abelegreen
DoctorHarvey
Ana Aguaisa
Claudiu_Itu
aklimenko
Phenom
sacredspirita
Paul Olivieri
Axerion
dalek
Infiniti
some
William Joyce
Mickagmi
Rob McCabe
Mayank Banerjee
poriali
R.Papa
Only Title

azastawski's Q&A profile

  • Visual Studio How to generate class file from t4 template into a sub-folder under project

    Using actions Microsoft.Practices.RecipeFramework.VisualStudio.Library.Templates.TextTemplateAction and Microsoft.Practices.RecipeFramework.Library.Actions.AddItemFromStringAction, I was able to generate class files and add them to the project. If wanted to put the class files into sub-folders under the project, AddItemFromStringAction dose not allow include folder name and "\" with file name. Is there any other action that can help Thanks, Regards, Eric Take a look at the answer on the following post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=438345&SiteID=1 The same t ...Show All

  • Visual Studio Express Editions Help i'm trying to query from sql with tableadapter

    A below is how i got it setup, I know it's very wrong but I hope you can understand what I'm trying to do. Basically, I have one searchtextbox, one searchbutton and a combox which I edited and inserted two strings RMAnumber and SerialNumber. I want to beable to get the result no matter if I search by a RMAnumber or a SerialNumber. I know that my setup conflicts between RMA and SerialNumber, so I guess this is where a combobox comes in, right But i don't know how to program a combobox to work with a searchbutton and a searchtextbox. Please someone guide me through this. THank you SELECT ID, Company, RMANumber, SerialNumber, Custo ...Show All

  • Visual Studio Team System Visual Studio 2005 Professional

    Will Visual Studio 2005 Professional be able to access Team Foundation Source Control directly or will we have to use the TFS 'explorer' to do Get/Check out/Check in etc I seem to remember reading that Professional would be able to directly access TFS Source Control but this page http://lab.msdn.microsoft.com/vs2005/productinfo/productline/default.aspx  seems to contradict that (and I can't remember where I read what I think I read) One thing to consider is that SourceSafe is included in the MSDN Premium subscription.  Does this help address your need ...Show All

  • Windows Forms Deploy chm file with click-once

    I'd like to include a chm file with the application that I am deploying, but no matter what subdirectory of the project I put it in I can't seem to get the file to be included in the deployment. The help file does work correctly from my application on the development machine where I have it located in the project bin directory. Right now, my deployment is just to a directory from which I burn a CD. Thanks, jerryK Have you changed the BuildAction property of the file to "Content" I think that's about all I did to get it to work.   ...Show All

  • SQL Server image causing extra page in PDF export

    HI I have a report, on the first page I have: Single Line of text Single Line of text IMage 2.04 " by 2.04 " (centered) Single Line of Text Single line of text Looks fine in report viewer, but when exported to PDF, all the text lines are on the first page, and the image is on the second page by itself off center. Any ideas Thanks Bob ...Show All

  • Visual Basic defualt browser

    How do you get windows to reconize my program as a browser and be able to set is as the defualt browser See this MSDN document for all the details on registering your program with 'Set Program Access and Defaults' -- as you'll see, creating some Registry keys and values is all that is required. '//mdb   ...Show All

  • Visual Studio Team System unenable code analysis

    Hello, I do not know how this happened but it appears Code Analysis is enabled in my VS 2005. Unfortunately, there is no way to unenable it without the Team Edition. So this results in a build error - unable to spawn fxcopcmd.exe. Any ideas Registry settings A couple of questions: Have you installed the Visual Studio Team Foundation Client (TFS Client) Was the project created or edited on a system with Visual Studio Team System installed You can disable the Code Analysis by manually editing the csproj/vbproj and changing the RunCodeAnalysis element to false, for example: < Prope ...Show All

  • Smart Device Development Selecting among multiple wireless network

    I'm writing an application that will run on a device with both 802.11 and (Verizon) WWAN connectivity. As currently configured, these show up in Settings/Connections as "My Work Network" and "3G Connection" respectively. The application is in C# and uses SQL Server CE Remote Data Access to synchronize data with a server database. The application will be used by truck drivers on a delivery route. I want to use the 802.11 connection when the drivers are at the warehouse and in range, and the WWAN otherwise. Currently the program connects on the connection specified in Connections/Settings for "Programs that ...Show All

  • Windows Forms Click once - When running install only getting .application xml in IE

    Hello, After I publish my application to a web site and then I try to install it using the publish.htm page all I get is the applicationname.application xml displayed in the browser. Is this a problem with my internet host or am I missing something simple I tried a 1 form project to make sure it was not anything to do with my current project and got the same results. Thanks for your help! JR You need to add some custom mime types for clickonce to work... .application      application/x-ms-application .deploy        &n ...Show All

  • Visual Studio Express Editions SOS:VC2005 B2 Express VC++ Directories Problem

    I downloaded and installed VC2005 B2 Express, I can't set "VC++ Directories". screenshot: http://member.netease.com/~lilong/temp/VS2005ExOpt.jpg is this bug this is a BIG PROBLEM!! How about removing C++ Beta2 ane replacing it with Beta1   Will this work   I am thinking about trying it.   ...Show All

  • Windows Forms Move a form with a formborderstyle: None

    My question is if anyone know how to accomplish this: I want my application to be transparent except the main interface which is graphicaly designed in photoshop and imported as a bitmap. This was done. The problem is that setting the : formborderstyle to None does not allow the user to drag the form anymore, I would like this to possible whether by capturing the mouse click event and release or by any other means. Any input would be appreciated, thank you. ...Show All

  • Visual Studio Express Editions MessageBox return

    Hi In C# I write: if ( textBox1.Text == "" ) { MessageBox .Show( "You must enter a name." , "Name Entry Error" , MessageBoxButtons .OK, MessageBoxIcon .Exclamation); } When the uer clicks the OK button, I want the program to return, rather than to continue executing. How to do this Many thx Yuelin hi, you can try something like that //you just use okbutton so the result will be always the same // so change it to something like ok and chancel DialogResult result = MessageBox .Show( "You must enter a name.& ...Show All

  • Visual C# Exe path from file extension

    Any way in the framework to get the .exe file path from a particular extension TIA You will have to look at the registry under HKEY_CLASSES_ROOT and then examine the keys under the extension.I would suggest that you open regedit for example,expand the HKEY_CLASSES_ROOT and look for .sln.There you will find a subkey called OpenWithList and where you will find devenv.exe. Here is a bit of code that helps you associate an extension with a program.You can use this and it makes very interesting reading http://www.mentalis.org/soft/class.qpx id=5 ...Show All

  • Microsoft ISV Community Center Forums VBA tapi caller ID

    hi wizards, I search for days now, but cannot find any working sample code to do the following I just want to get the telephonnumber of an incoming call (initiate outgoing calls with tapiRequestMakeCall works with a telephone connected to the USB port). I found a lot of code for C or VB, but not a single working one for VBA. Can anyone point my nose to a working sample I just want to recognize the incoming call in my access application and display the corresponding record... I though to adapt a VB code to match the VBA criteria is not a big deal, but apparently definitions, links and libs are differently handled or I jus ...Show All

  • Visual Studio Express Editions array resize query

    In a data gathering application I have a block of data, say 8000 samples, that would be divided into 8 blocks of 1000 samples for the 8 data channels. Now, depending on the application, there may be 4000 samples as 8x 500 samples or 16000 samples as 8x 2000 samples. How would it be possible to resize the data[8,1000] array to data[8,500] or data[8,2000] I've tried array.resize, but that seems to only be for one dimensional arrays. Is there any way of resizing a multidimensional array Would I have to use array.createinstance instead to specify sizes Thanks Andy Hi there, I cane accr ...Show All

©2008 Software Development Network