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

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

netie

Member List

lezi
psc161
Computer Guy69146
ddCONFUSED
Blader
mikalush
Jehanzeb Naeem Khan
dagjo
AsifHameed1
ChecMate
Jagoop
Zia Khan
matthew lyden
satya999
Socrates Kapetaneas
Buster95127390
NinetyNine
jwagner20
markdrury
EvilPenguin
Only Title

netie's Q&A profile

  • Visual Studio Team System BuildStatusChangeEvent doesn't work.

    After many tries with BisSubscribe I managed to get BuildCompletionEvent working. BuildStatusChangeEvent still doesn't wotk for me. There is no information about it in tbl_notifications table in TfsIntegration database so I assume it isn't fired. BTW, what is the connection between BuildCompletionEvent name and that from tbl_event_type (which includes spaces) And one more thing. Why there are connections between connections between tbl_notification rows describing build completion and tbl_client_event containing XML description of check-in Marcin Your post is intresting have you thought about more filtering such as adding only builds that are marked with Build Quality tags Anyway, the pr ...Show All

  • Visual Studio Express Editions Date Picker

    I have got a form that has 3 date pickers tied to a dataset If the field is blank, how do you get the date picker not to display anything unless there is a date in the field Davids Learning ...Show All

  • Visual Studio Express Editions How to import a .DLL at runtime?

    How do I import a library contained within a .DLL file at runtime, given its path Is this even possible in VB.Net 2005 Express Well you see I am making an MMORPG that will need to automatically update itself on the client's computer. To save bandwith, I am moduralizing the graphics library, etc. onto DLL files, so that they are only re-downloaded when they have been updated. Therefore, if I were to import the library at design time, then modify it later on, would the application still function, ot would I need to import it at run-time ...Show All

  • Visual Studio Express Editions Install of Visual Studio Express

    When trying to install Visual Studion Express (En_vs_2005_Pro_90_Trial.img), its a .img file that will not run. In ideas on how I run this file ...Show All

  • Software Development for Windows Vista Conditional handle external event

    I've a HandleExternalEvent activity in the workflow, I want to invoke it when the parameters match some condition, it do nothing and keep in idle if parameters do not satisfy the condition. Is it possible to do so ! Thank you very much!!! HandleExternalEvent will always run when a message is received. You can try putting it in a WhileActivity and just loop back when the condition is not met. Shelly Guo ...Show All

  • Visual Studio 2008 (Pre-release) ColorAnimation, Binding From Property

    Hi guys, May be someone knows how can I bind "From" Property of the ColorAnimation list.cs /////////// private Color m_ListColor; public Color ListColor { get { return m_ListColor; } set { m_ListColor=value; OnPropertyChanged("ListColor"); }} list.xaml /////////////// <ColorAnimation Storyboard.TargetName="fillb" Storyboard.TargetProperty="(SolidColorBrush.Color)" From="{Binding Path=ListColor}" To="#111111" Duration="0:0:0.1" /> There is an exception in Presentationframework.dll Appreciate any help, Irina try changing From="{Binding Path=ListColor}" to From="{Binding E ...Show All

  • Visual Studio Tools for Office Call macro from C#

    Hello: I have an Excel Workbook Project withs VSTO and what i need is to run an existing vb macro. I create the macro with Visual Studio Macros (Alt-F11) inside VS 2005 and the look like this: Imports System Imports EnvDTE Imports EnvDTE80 Imports System.Diagnostics Public Module Module1 Public Sub Test() MsgBox( "Hola amigos" ) End Sub End Module Then i want to excute this macro from a sheet of my project, the look look like this: using System; using System.Data; using System.Drawing; using System.Windows.Forms; using Microsoft.VisualStudio.Tools.Applications.Runtime; using Excel = Microsoft.Office.Interop.Excel; using Office = Microsof ...Show All

  • Microsoft ISV Community Center Forums Ideas for storing results from multiselect listbox

    I need to store the results from listbox where the user may make multiple selections, any suggestions Hi Did not realise that you longer term storage, I was thing of short terms storage for VBA use. If possible us Access to store your data. Access can be used from any office app in VBA. You can also use an Excel sheet and use AODB to access it as a table; I am sure Derek Smyth replied to a post with an example of doing this in this forum. ...Show All

  • .NET Development Installer for pocket PC

    Hi I am developing an aplication for pocket PC in VB.NET . I want to make one installer for my application . I added one setup project and one cab project , but i am using one dll written in vc++ While running after adding the dll , it shows an error "the dll is not an window image " so let me know how to integrate that dll in the setup. Please repost to the .NET Compact Framework forum http://forums.microsoft.com/msdn/showforum.aspx forumid=33&siteid=1 ...Show All

  • Windows Forms app.application Publish file

    Hi, I know this has already been posted, but I need to get it clear in a simple way. The 'app'.application file is created when you publish an application to a web/ftp server, along with other files. The publish.htm page shows a button linking to the 'app'.application file and I can correctly install it, but a friend of mine (and maybe many more people too) get the 'app'.application file contents displayed in his browser. He has the .NET Framework 2.0 installed (installed automatically with VB 2005 Express), and I would like a simple solution to resolve this issue, without reinstalling .NET 2.0 (unless you are sure it resolves it). I also heard that it has to do with MIME types , but I'm not too familiar with this term to unders ...Show All

  • Visual Basic Creating an Error Log

    Hello again, I have never done this but I thought it was a good ideal unless you can tell me differentlly. How do you create an error log. I know I will have to create a table for this, but I dont know how to catch the errors and put them in a file for observance at a later time. If someone can point me in a direction,code, article,etc. it would be appreciated Davids Learning do you mean to a db table or a file either way it's nothing hard, whenever you want to log something, either append it to a file, or insert a new row on your table. The exception handler in a try...catch block is a good place to do this, e.g. Catch ex As Exception WriteToEventLog("!!!ERR!!!, ex.message= ...Show All

  • Visual Studio 2008 (Pre-release) Problem Deserializing Message

    Hi, I am using the FEB CTP version of WCF. Currently the service that I am running returns the following System.InvalidOperationException : The operation is not valid due to the current state of the object. Server stack trace: at System.Xml.XmlBaseReader.ReadEndElement() at System.ServiceModel.Channels.Message.ReadFromBodyContentsToEnd(XmlDictionaryReader reader) at System.ServiceModel.Dispatcher.OperationFormatter.DeserializeBodyContents(Message message, Object[] parameters, Boolean isRequest) at System.ServiceModel.Dispatcher.OperationFormatter.DeserializeReply(Message message, Object[] parameters) at System.ServiceModel.Dispatcher.ProxyOperationRuntime.AfterReply(ProxyRpc& rpc) at System.ServiceModel.Channels. ...Show All

  • Visual Studio Express Editions clicking a picturebox

    I have about 200 little pictureboxes that start simply white. When they are clicked they turn black. I'm using picture boxes because they are the only thing that can get as small as I need them. I'm hoping for a way that I don't need to re-write the code that many times. I've tried using Private Sub PictureBox1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox1.Click Me .BackColor = Color.Black End Sub But that changes all the picture boxes and textboxes and forms backcolor to black. I'm hoping there is some simple solution that I'm missing. Thanks for any insight. your code snippet is showing that you are setting the back color of the FO ...Show All

  • SQL Server BCP Interactive - from script

    I have a script where I'm doing a bcp out - I need to have the script do the format file on export. Is there a way to run bcp interactively from script, accepting the defaults THat way it will make a format file for me. yes, you can bcp in without a format file. We've never ever had to use a format file when bcp'ing in or out. Of course our datatypes always matched, and we always use -n, but I'm sure -c works as well. ...Show All

  • Visual Studio 2008 (Pre-release) Problem Animating Background in Style for TextBlock

    I'm trying to animate the background color of a textblock in a style, and I get the following error: "'Background' property does not point to a DependencyObject in path '(0).(1)'." I am explicity setting the background as a SolidColorBrush as part of the style, but still get this error. Does anyone know why Many thanks, James <Application.Resources> <Style TargetType="{x:Type local:CostLooklessControl}"> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="{x:Type local:CostLooklessControl}"> <TextBlock Name="tbRate" Text="{Binding Path=Cost, RelativeSource={RelativeSource TemplatedParent}}&quo ...Show All

©2008 Software Development Network