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

Software Development Network >> JD Moore's Q&A profile

JD Moore

Member List

LouisPeter
Christian Hayter
dmarze01
Tej62007
snowmt
KevinHall
ThE ViKinG
Nick Hustak
Nicolas Iacovides
Antropoid
Charlie Calvert MSFT
Challenger10
arogan
sugupta00
Boo79
Waltari
Snickel65
Sqnyy
Ather.
dzimmy
Only Title

JD Moore's Q&A profile

  • Visual Basic Is the IDE Tab control available as a component?

    The IDE Tab control has some features that I would like as a run-time component - mainly the auto-hide feature. Is the component MS uses in the IDE availalble as a usable component If not, is there a tab control component that behaves like the IDE version with auto-hide Thanks for your replies. I wonder why MS did not include the component in it's toolbox as it is used to build the development IDE If any MS Visual Studio people are reading this, can you make the tab control component you build the IDE with available Thanks.. ...Show All

  • Audio and Video Development Xpath expressions in Include in Markup Files

    Is there any restriction whatsoever on the kind of X-Path expressions that can be used in <include> element. e.g. can a stylesheet be included on a condition whose truth value is determined by an xpath expression refering the DOM nodes. i think i got it.......... another question the spec says ...7.5.3.1.7 .. the infset for each include is the infoset of document prior to include processing.Does it mean the partial DOm tree (if any) built upto the include node can be reffered It seems so. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Texture coords in export of 3dmax, help

    Hi I have a problem with the texture coords when i export my mesh of the 3dsmax 9.0 using the panda export, the situacion is this I have a simple plane with 4 vertices, in the material editor of 3dmax i apply a diffuse map and define the tilling with the values U =3 V=3, then apply this in my mesh, render then 3 times the texture, is OK, but when i export this, his export to .x file with the coords 0.000000;1.000000;, 1.000000;1.000000;, 0.000000;0.000000;, 1.000000;0.000000; His forever betowen 0 and 1, how i can export the coords equals in the 3dsmax thanks Most exporters will not pay attention to the crop & tile parameters in the material map settings. Instead, you have to m ...Show All

  • Visual Studio Express Editions Inputbox

    Hi all, I'm new to this forum and I am in search for help. I just started with VB.NET 2005 and I'm having difficulties with an assignment. Maybe someone could help me out a bit I'm supposed to make an inputbox appear, and if OK is pressed while no text is entered (empty) I want to show a Messagebox wich tells the user to give some input and when OK is clicked on the msgbox, the inputbox should re-apear. Dim txtPlease As String = "Please type the answer below" Private Sub ListBox1_SelectedIndexChanged( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListBox1.SelectedIndexChanged Select Case ListBox1.SelectedIndex Case 0 If InputBox(txtPlease, " " ) = "answer" Then ...Show All

  • Windows Forms DataGridView - Select row programatically

    How can I programatically make a row in a DataGridView selected The SelectedRows property is read only. I have a slightly different question along these lines if someone can help me out. I have a multi-select datagridview. I have added a contextmenu to my rows when adding them based on a column value. I only allow a row selection. When you right click on the row, the contextmenu pops up, but it does NOT select the row that was right clicked on. I solved this problem by checking the mousedown event, checking to see if it was the right mouse button that was clicked and then selecting the row. The result is like a multi-select selection with the CTRL key pressed. If the SHIFT key is pressed it w ...Show All

  • Visual Studio Team System How to create a branch programmatically?

    Hi, One of our customers requested an application to automate their branch/merge workflow with TFS CM. I’m looked through the SDK, web services and assemblies but I couldn’t find an API for that. There are methods for merge but nothing related to creating a new branches. I would appreciate any information you can share about it. Thanks, Max Andrade You want the Workspace.PendBranch method. http://msdn2.microsoft.com/en-us/library/microsoft.teamfoundation.versioncontrol.client.workspace.pendbranch.aspx You then need to commit the branch using a Workspace.CheckIn as normal with all pending changes. Cheers, Martin. ...Show All

  • Commerce Server "Error from transport adapter for BatchComplete event"

    Till yesterday our deployment involving the Commerce Sever Catalog and Orders adapters were working fine inone BizTalk application. But now we getting this message: The Messaging Engine received an error from transport adapter "CommerceServerOrders" when notifying the adapter with the BatchComplete event. Reason "Object reference not set to an instance of an object.” This tells us nothing. However there have been 2 recent developments on the server which could have led to this scenario: A second Biztalk application was added and it is now referencing the first one through a Biztalk application reference. Since the 2nd one also uses the Commerce Server adapters and the Microsoft Global Property Schema can reside in ...Show All

  • .NET Development Import data from Excel

    Hello, I have to import from Excel some data in an Winforms application. I have to import the value of the cells but also the formula (is there is one) linked to the cells. Do you have an idea how to do that (piece of code, tutoral, URL are welcome) Thanks, If you need to access a Formula value you will need to use automation with Excel. The following should get you started: How to automate Microsoft Excel from Visual Basic .NET How To Automate Excel from Visual Basic .NET to Fill or to Obtain Data in a Range by Using Arrays ...Show All

  • Smart Device Development System.TimeZone.CurrentTimeZone

    I am writing an application for a Windows Mobile device using C# and .Net Compact framework. I need to obtain the system timezone or timezone that the user specifies in the Settings/Date and Time area. System.TimeZone is an abstract class and if I do try to call System.TimeZone.CurrentTimeZone I get a NotSupported exception. I have also tried p/invoking GetTimeZoneInformation() and also received a NotSupported exception. I went to pinvoke.net to see what methods are available under coredll.dll and GetTimeZoneInformation is not there, so I have no idea how I am to get the timezone. Thanks Harry NETCF V2 is required in order to run V2 applications, V1 naturally won't do. And you did not use the _ same ...Show All

  • Smart Device Development Http Image File Uploader for .net compact framework 2.0

    Having major problems trying to upload a file (an image) to a webserver via http post, keep getting a WebException.. Tried using the example code available at: http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnnetcomp/html/httpcomm.asp ---------- Code -------------- private void menuItem2_Click( object sender, EventArgs e) {     String httpResponce = UploadFileBinary( @"\Storage Card\test.jpg" , http://www.myServer.com /upload.php );     MessageBox .Show(httpResponce); } public String UploadFileBinary( string localFile, string uploadUrl) {     Cursor .Current = Cursors .WaitCursor;     HttpWebRequest req = ( HttpWebRequest ) WebR ...Show All

  • Architecture Architectural Considerations for Auditing

    We are building an application which connects to two kinds of database viz. one is a local database store and other is located at a central server. Now to perform auditing for every transaction I am of the opinion to do auditing at the database level. Implement it as part of trigger insertion into an audit table. Reason being its simple to implement and maintain. My Database Architect is against the idea and wants me to handle auditing at the application level. Would appreciate your viewpoints and guidance on this. Thanks Sai Dear Sai, Generally raw db audits don't satisfy the audit requirements from most applications as understanding data out of raw audits is complicated. I recommend that yo ...Show All

  • SQL Server Error in SQL startup

    Hi guys, I have an SQL Server 2000 installed on a Windows server 2003. Yesterday, i restart my server and before login to the server the following message poped-up: "Your SQL Server installation is either corrupt or has been tampered with (unable to load SQLBOOT.DLL). Please uninstall, then re-run setup to correct this problem" Any ideas what this error is or why occurred Any help will be appreciated. There are no errors in the event viewer regarding the error i tild you above. There is only the 19012 error which has to do something with the TCP port. Any other ideas what this error should be ...Show All

  • Visual Studio Team System Where are the Models?

    Are there any Report Builder Models available for the tfs warehouse Hi Jason, For this release there are no report builder models available. We are recommending that you use Report Designer directly against the cube to author reports against the olap TFS Warehouse. We have seen performance and usability issues in using the Reoprt Builder models on the cube. Thanks, Mauli ...Show All

  • Windows Live Developer Forums MSN PROBLEM

    ive recently bought a brand new laptop and installed msn messenger ( from the msn site). When i go to sign in it really lags alot, and it never actually signs in... Sometimes i get a error message 80040111 and sometimes it just asks me to try again. Ive tried uninstalling and reinstalling it hundreds of times not to mention deleting any addons or patches. Ive tried to update that DLL file aswell but still get the same message. Windows messenger on the other hand works fine... along with msn messenger on my mates laptop as i have no worries signign into that. Ive also took any firewalls off etc aswell its really pissing me off tbf now aswell.... carnt seen to find anything on net to aid me neither. any help PLEASEEEEE ...Show All

  • Visual Studio Crash with Different Bucket ID: 291424876.

    Thought I'd start a new thread, since I'm using Visual C# Express, rather than full VS2005. Windows XP Pro SP2, Visual Studio 2003 Pro, SQL Server 2000 Developer Edition, Visual C# Express, Visual Web Developer Express, SQL Express 2005, MSDE. I also have Virtual Server 2005 SP1 beta installed. Problem just started this weekend. Whenever I click on any topic in the Index, Document Explorer crashes. I've tried Repair on Visual C# Express, Visual Web Developer Express and MSDN 2005 Express. Same problem. It was working fine last week, I'm not sure what's changed. I have previously had VS2005 beta2 installed, but I removed that by following the instructions before installing the Express Editions -- and, as I said, they were working fine last ...Show All

©2008 Software Development Network