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

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

kreigh

Member List

Christie Myburgh
Xancholy
vbnetdiscuss
prog.gabi
dagfari
arro239
chendil vanan
B12 - Billy Liu
Jeff Youel
Closer
Eduardo D
Nick Winters
Awais786
Pragmented
amiune
DarkPressure
newVBuser
Al Hibbs
Tryin2Bgood
WilderLand
Only Title

kreigh's Q&A profile

  • Visual Studio 2008 (Pre-release) specifying an enum value from within XAML

    Is it possible to specify an enum value ( defined somewhere in a .cs file ) as a value for the Tag of a ComboBoxItem I'd like to associate items in the ComboBox with particular enum values so I don't have to convert within C#. I'd like to do something like this- class Test {   public enum MyEnum { Value1, Value2, Value3 }; } < ComboBox >   < ComboBoxItem Tag = "Test.MyEnum.Value1 " >Value 1 </ ComboBoxItem >   < ComboBoxItem Tag = "Test.MyEnum.Value2 " >Value 2 </ ComboBoxItem >   < ComboBoxItem Tag = "Test.MyEnum.Value3 " >Value 3 </ ComboBoxItem > </ ComboBox >   >> Note the compr ...Show All

  • Visual Studio 2008 (Pre-release) How to host multiple services at a single location in WCF?

    Hi evryone, WCF is totally new to me, so I need to learn from all of you. After learning WCF by download examples in Microsoft‘s website, I still not quite sure how to design the software for my company using WCF technology. Example: I need to develop software which needs to have many contracts to implement by many classes Interface I EmployeeCtrl ( ServiceContract) implement by: EmployeeCtrl class Interface I SalesOrderCtrl ( ServiceContract) implement by: SalesOrderCtrl class Interface I PartCtrl ( ServiceContract) implement by: PartCtrl class Interface I SalesOrderCtrl ( ServiceContract) implement by: SalesOrderCtrl class and many more …. Based on what I know about WCF at this point, I ...Show All

  • Windows Live Developer Forums Pasting and plugins

    When your plugin uses the urlcontentsource, it obviously takes it from the clipboard when you paste it in, I was wondering how Live Writer handles it when you have more than one plugin that uses this method Which plugin gets the pasted content first SL ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Subscription not available on my Xbox!

    Hi! Is there any reason why the Creators Club Subscription is not showing up on my Xbox I live in Norway, but I've not read anything about any region restrictions on this download. I want in on the fun too! Hi Peter, Can you please post your Gamertag or email it to me through the team blog so I can look into this http://blogs.msdn.com/xna/contact.aspx Thanks! ...Show All

  • Visual Basic program recovary

    i publish a windows program on the local pc then i lost the original in vb 2005 inviroment. any way to recovered the published one to redeveloped on vb 2005 . You can try out decompiling using Lutz Roeders great tool reflector http://www.aisto.com/roeder/dotnet/ Hopefully you learned lesson to keep your source code backed up. ...Show All

  • SQL Server SQL 2000 Enterprise Linking of servers not pulling data.

    I know this is an easy one for most of you but this is new territory for me. I am trying to link a production application database to an existing SMS database. Both of these databases are SQL 2000. I have sa access to both of them. I have an accreditation application that deals with internal processes within our active directory network. We are using SMS database collections to provide the discovery for reporting of this application database and I want to compare the collection to the existing data between the 2 databases. For simplicity I will define them both. Application Database we will call “A-Database” SMS Database we will call “B-Database” I have gone into the A-Database and gone to linked Serve ...Show All

  • Windows Forms How to have only a single instance of form running

    Hello guys, I have a Winforms application written in managed C++. I would like to only have one instance of my application running on a given system at a time. The reason being opening another instance of my form can really mess up the environment I'm working in. How can I do that I'm guessing it wont be very hard to do. Appreciate your help!! Figured it out. The mutex was being prematurely discarded on other systems (strange). Anyway, I added a GC::KeepAlive(mutex) to keep a hold of the mutex as long as its running. It works like a charm now. ...Show All

  • Visual Basic Copy a datagrid

    Is there an easy way of copying a datagrid in one form to a datagrid in another, still with all data and columns Yes What i did was this 1) i copied the dataset,binding source,table adapter and binding navagator first. 2) i then copied the dataview grid. 3) i then copied the form load commands that fill the dataset: Me .CompaniesTableAdapter.Connection.ConnectionString = ConnectionString Me .CompaniesTableAdapter.Fill( Me .HaffnersDataSet.Companies) This worked for me. Now i used the typed dataset classes created by the dataset wizzard. I also used the drag and dropped initial dataview grid to create the dataset and binding objects. But if as long as they ...Show All

  • SQL Server howto open tunnel connection

    Hi, I'm connected to a remote server via a ssh tunnel. On the server there is an SQL Server running. The remote SQLServer TCP port 1433 is forwarded to local computer to port 8966. So I have to connect to localhost:8966 instead of remote:1433. In the connect dialog I can specify only protocol but no ip address neither tcp port number How can I specify the localhost:8966 in the SQL Server Management Studio Express as the endpoint to connect to you havent understood me I dont want to reconfigure the sql server. I'd only want to tell the management console where it should look for the particular server 1. There is a sql server somewhere in net 2. It listens on default port 1433 3. The port is blocked by firewall 4. Instead there is an s ...Show All

  • Visual Basic VB.NET & EMAIL

    I am trying to figure out, for a friend, how to write a VB program that will launch multiple IE's and when those IE's launch fill in the appropriate login name and password for that site. Is there any way that this can be done you can launch a process of IE using the System.Diagnostics.Process.Start(" http://www.url.com ") but as for filling out the form, I'm not sure this can be done but do not quote me. You can however embed a WebBrowser control in your application, if you have .NET 2.0, and implement the document_completed event then look through the documenttext/page property for tags and modify them but this would be terrible as you would be parsing strings and what not - nasty stuff. ...Show All

  • Windows Forms How to code "Find" feature in .NET Browser control?

    Hi Guys! Any way to code the "Find" feature using the .NET Browser control Matt there is a find function in the MSHTML control... IHTMLDocument2 doc = webBrowser1.Document.DomDocument as IHTMLDocument2 ; IHTMLTxtRange range = doc.selection.createRange() as IHTMLTxtRange ; range.findText("texttofind", 0, 0); ...Show All

  • Visual Studio Team System Description query fails when trying to run.

    I have a search query setup. It's pretty simple, it runs against the current project and looks at the Description field for specific text. If I run the same query against the title field everything works with no problems. When I run the query, an error comes up stating 'stating there is a problem on the server. Contact your team foundation administrator.' Well I recently fell into that position, so I'm trying to address the problem. Any ideas on how to troubleshoot the problem. Any help would be welcome. aaron Can you look at the event log on the application tier machine and see if there are any hints of what went wrong I think you may need to enable full text indexing for the long text fields. The column ...Show All

  • Visual Studio Using the MPF to Implement a Project Type (C#)

    Hello, I am trying to create a simple new project type, following : http://msdn2.microsoft.com/en-us/library/bb166157(VS.80).aspx I have now run out of documentation on which interfaces etc I need to implement.. Should this bolier plate code actually do any thing Because I see no new project in the exp hive Thanks Tom Hi TurboTom, TurboTom wrote: For example the IronPython project has resx files that contain the strings used in the "new project window" How would my demo project know this ... Regarding the resources I had a problem with it when I started working on our MPF based package. The thing I missed when I create the package (using IronPython as a sample) was very simple - ...Show All

  • Internet Explorer Development IE7 Active Desktop

    Hey all, we have a domain here with 15 clients. The policy Active Desktop Wallpaper is enabled, so the users have a default wallpaper that they can't change. But since we've installed the final release of Internet Explorer 7 it seems like that the Active Desktop just doesn't load and there appears a blue background with an image icon like in IE when it's still loading the image... Click I'm sure the path is right and nothing has been changed on the policies for a while before IE7 was installed. Does somebody how I can fix this Thanks, Snake86 I too am having this issue. :( Right now I am deleting explorer, going back to 6.0 and seeing if that makes any difference. I have also downloaded N ...Show All

  • SQL Server SQL Server 2005 SP 2 December CTP authentication fails

    Hi, if I try to install SP 2 using SQL Server authentification (sa) it fails. The following lines appear in the file "Hotfix.log": 01/03/2007 14:08:23.859 Authenticating user using SAPWD 01/03/2007 14:08:23.875 Validating database connections using Windows Authentication 01/03/2007 14:08:24.171 Pre-script database connection failed - continuing to wait for SQL service to become responsive to connection requests ... repeated 60 times ... 01/03/2007 14:13:33.625 The following exception occurred: SQL Server reagiert nicht vor der Skriptausfuhrung Date: 01/03/2007 14:13:33.609 File: \depot\sqlvault\stable\setupmainl1\setup\sqlse\sqlsedll\instance.cpp Line: 1411 Why does it try to use Windows Authentification although I have tol ...Show All

©2008 Software Development Network