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

Software Development Network >> JIM.H.'s Q&A profile

JIM.H.

Member List

MBushell
VisualBasicGuruWannabe
su45937
AndrewLuiHK
ogtr
MarkBosley
EWL
Arran Siu
bitbonk
re infecta
monkeynova
nhaas
Salvador Rocha
tportz
Peter paterson
CodeScribler
JonEbersole
cerny
NoEgo
sahady
Only Title

JIM.H.'s Q&A profile

  • Windows Live Developer Forums Trying to create a best fit map

    I would like to create a map based on latitude and longitude coordinates that is on the highest zoom possible and contains all of the coordinates. I've looked through the SDK and haven't found anything of use yet. I did try out IncludePointInView() method, but haven't been able to work this one. What can I try to create this map Thank you Ha... I feel stupid now, out of every method I scanned through... I missed SetMapView() .... I was going to kill someone for this Oh well.. Thank you very much. I appreciate it. ...Show All

  • Windows Networking Development Communication speed

    Hello, I have some surprises with time measurements and would appreciate a reference to a statistic sheet or an article on the subject. I am doing a test in the fastest configuration possible : two PCs connected with a cross-cable. The interface is a 100BT Ethernet that can transfer theorically a maximum of 12,5 Mega bytes per second. The test consists of a little code that sends packets of 65.500 bytes (the length parameter of the WriteFileEx). The client marks the packet at its beginning (each packet a # mark), the server copies the mark at its end and the client when it receives the same packet compares the two marks to verify that everything has been tranfered. The client and the server use overlapped/IO. In this configuration, it is m ...Show All

  • Visual Studio Team System Needed IIS and NTFS Permissions

    Good day! Knowing me I've probably missed something, but after installing TFS the two admins (myself included) are the only ones who can connect. Being somewhat familiar with IIS and NTFS Permissions (actually just enough to be dangerous) we noticed that <machine-name>\Administrator, <machine-name>\IIS_WPG, and SYSTEM are the only users/groups who have have access to "D:\Program Files\Microsoft Visual Studio 2005 Team Foundation Server\Web Services" directory. Should a group like <domain>\Domain Users also have access If so, any idea at what level and why the install would not have set this for us Thanks! that's interesting that you had the same issues. We're close to getting our new hardwar ...Show All

  • SQL Server query for recordset data into sql table

    Hi, i have a recordset on an asp page and put into session now i want to move this recordset data from session to sql server table.how can i query this.Pls suggest me... any suggestion will be appriciable... Thanks Hi, depending on your version of ASP the work to be done can differ, but here is the ASP.NET 2.0 approach, if you have the data in the session: -Get the data from the session -cast it to a usable data object (like datatable) -Use a sqlcommand or datadapter to update the data on the database (depending on your implemented database interface, DML Command Access or SP access this can differ) HTH; Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Studio CR formula Groupby question

    Hello, I have the following table structure: ID Year Amount 1 2004 100.00 1 2005 200.00 1 2006 100.00 2 2005 200.00 3 2005 100.00 3 2006 200.00 I want to create a report, that will show the above data as following: 2006 ID Last Year Current Year Difference 1 200.00 100.00 -100.00 3 0.00 200.00 200.00 2005 ID Last Year Current Year Difference 1 100.00 200.00 100.00 2 0.00 200.00 200.00 3 0.00 100.00 100.00 And so on.... I know I have to do a group by year, but then how do I display my report like above. Any and all help will be greatly appreciated. Thanks ...Show All

  • Visual Studio 2008 (Pre-release) feature requests for WPF v2

    Here is my personal list of feaures I would like to see in v2 of WPF, what do you think I'd suggest you post suggestions in the WPF feedback center on Microsoft Connect ( https://connect.microsoft.com/site/sitehome.aspx SiteID=212 ) ...Show All

  • Visual Studio IVsTextmangerevents.

    Hi all, I am trying to handle keypress events in Visual studio 2003 editor.As i have read in earlier posts , here i am using VSIP. I have not worked in COM/OLE earlier.It is getting a little difficult to understand all the details in VSIP.I was able to get a text manger but i could not get a textmanagerEvent object so that i can register my view for that. Kindly provide me any pointers to read about it or sample code. My code is as follows, applicationObject = (_DTE)application; MSVSIP.Helper.ServiceProvider sp = new Microsoft.VisualStudio.VSIP.Helper.ServiceProvider((Microsoft.VisualStudio.OLE.Interop.IServiceProvider) this.applicationObject); IVsTextManager vsTextMgr = (IVsTextManager)sp.GetService(typeof(SVsTextManager)); ...Show All

  • Visual Studio Express Editions VB express guided tour class example

    I recently downloaded vb express and began going thru the guided tour. I got to the part about creating a class and followed the instructions exactly. Then I come to the part about testing your class and the instructions don't correspond to what I'm seeing. For example, on the project menu there is no "Set as Startup Project". Also, when I choose Add References there are no projects listed on the project tab. Its probably something simple that I'm doing wrong but I'm stuck. Any help would be greatly appreciated. Thanks. I was doing File-> Open-> New Project instead of File-> Add-> New Project. I knew it was something simple. ...Show All

  • Microsoft ISV Community Center Forums How do I create and use 3D ranges in Excel-VBA

    It is easy to create and use 2D range in excel. The following code will do Option Explicit Sub Demo3DRange() Dim sh As Worksheet, r As Range, vData Dim Row As Integer, COl As Integer Set sh = ThisWorkbook.Sheets("Sheet1") Set r = sh.Range(sh.Cells(1, 1), sh.Cells(100, 2)) vData = r.Cells.Value For Row = 1 To 100 For COl = 1 To 2 Debug.Print vData(Row, COl) Next COl Next Row End Sub When we execute the above code, the variant vData will become a 2D array of 100*2. Now my question is following: A)How do I create a 3D range in VBA code B)Can I assign that 3D range to a variant, and get a 3D array, just as I get 2D array in case of 2D range Thanks -Rahul ...Show All

  • Visual Studio Express Editions Can Somebody help me Please!

    Hi , I have an application written using Visual Basic, which uses Crystal Report 8.5 for generating reports and Sql Server at the back end. I have installed the application on client systems. The Client system uses NPViewer for displaying Crystal Report. Applications displays the reports just fine. But the problem is Export option [I can see the Button] on the NPViewer is not working. Nothing will happen if I clicked on the Export Button. The client machine uses Windows XP. Is it because of any missing DLL or what. can some body please help me out Thanks in advance.. Hi, No the Export Button is not getting enabled even after opening a report. I suppose it's because of some missing dll, but don't know ...Show All

  • Windows Forms ADO Control

    hi I have seen programs that bind a DataGrid to an ADO Data Control. But i want to know, how to display the fields in Edit Controls. Is there some way to bind the Edit control to the DataSource(ADO Control). Hi shivShiva we can bind data to label or textbox, follow is an example bind table to textbox, and you click the button the recorder would be move thorouh table using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace WindowsApplication1 { public partial class Form3 : Form { public Form3() { InitializeComponent(); ...Show All

  • SQL Server return top 5.... under specifcied dimension join another

    Dear all, i'm working on this problem and see any one can give me insight: my MDX statement is to get a top 5 data from a cube with some dimensions.. should be pretty simple .. looking like this.. Select { [Measures].[grsamount]} on columns, non empty {topCount ([Distributors].[Distributors Groups].[Distributor Group ABC].children, 5, [Measures].[grsamount]) } on rows from [transactions] where ([time].[all time].[2006].[q2].[jun], [Transaction Status].[Status].[Settled], [Sales Office].[All Sales Office].[US]) This working fine and returns me a result like.. Distributor A, $1 Distributor B, $2 (assume there is only 2 distributors under Distributor Group ABC AND US office) However , i have to retrieve a dimension pro ...Show All

  • .NET Development Unable to log onto FTP server

    I recently downloaded internet explorer 7 beta 3 and found that I am unable to log onto FTP servers of any kind. Does anyone else have this problem or knwo how to fix it Thanks. Sorry this is the development forum and not the IE newsgroup/forum. I would suggest you repost this question in the IE newsgroups or file it as a bug using the feedback website. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Draw() called before Update()

    I noticed Game.Draw() is being called before Game.Update(), which doesn't (seem to) make sense. Is there any suggested way of dealing with this If Update() is supposed to, umm, update the state of the application to a certain local time, before the first Draw() there is no state ready to be painted to speak of. sounds like we are getting away from the issue, My vote on the update / draw order is for draw to be called first and then update. You should setup all the starting points in a method called from OnStart method. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Can I create an empty XNA project?

    I would like to make an empty XNA project, a project without any template code. Selecting the "Empty Project" template in Visual C# doesn't seem to enable certain XNA features, such as the ability to select the Content Importers and Processors in the Properties area of an image file. The only way to get these features is to create a "Windows Game" project, but that creates a bunch of template files that I don't want! Can I create an empty Windows Game project Hi; When I exported the Template, it automatically added to the Visual C# Templates and create a .zip folder in C:\Documents and Settings\Owner\My Documents\Visual Studio 2005\My Exported Templates. If I want to share ...Show All

©2008 Software Development Network