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

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

KitGreen

Member List

ackermsb
Peter Peter
Mamine
William Lowers
Olivier Cueilliez
Ed Jarrett
Tryin2Bgood
Webbert
Tryin2Bgood
HenryIV
term_paint
Ion101
Morten Grøtan
Zen210
enric vives
Keith Vinson
sxzhan
swingme
Mike Chapman
laja
Only Title

KitGreen's Q&A profile

  • Windows Live Developer Forums "Virtual Earth supports open GIS standards"

    hello all impressive work on VE4! from this article: http://www.gcn.com/online/vol1_no1/42541-1.html Can you describe what GIS standards are supported Is it just GeoRSS I've looked through the entire API, the WinForms Ghost example code and the GlobeControl assemblies themselves and I couldn't find any WMS/WFS etc. support. Is this coming in the future maybe How about KML I love the API and the fact that you can get under the hood using standard DX coding and that there's a PlugIn framework available. How do you see this working in the real world PlugIns are loaded on the fly from web sites kinda like ClickOnce deployment cheers brian flood http://www.spatialdatalogic.com/cs/blogs/brian_flood cool stuff dunca ...Show All

  • Microsoft ISV Community Center Forums .onAction assign value

    In my macro when the user presses a button I use the following code: Set stapelDiagramKnapp = .Controls.Add(Type:=msoControlButton) With stapelDiagramKnapp .Caption = "Stapeldiagram" .OnAction = "ChartModul1.arrayLoop" ....here I want to assign a value to a global variable (declared in a differen place) so that I can keep track of which button is pressed. Alternatively I can assign a value to an "ordinary" variable and pass that along to the other modules as an argumnet. Can someone please help me with the code for this Thanks to you all very much! Since you didn't inlcude the With line, I'm having to use my crystal ball to figure out WHAT your adding the control to. I'm gu ...Show All

  • Windows Forms How to read all surviving DataGridView rows subsequent to user deleting rows

    This is an embarrasingly simple question to ask, but I'm perplexed and without an answer. I've created a datagridview object in C# and bound it to a simple datatable. The datagridview displays just fine, and allow the user to perfrom all desired functions (sorting, editing cells, and deleting). I provide the user with a "Load data" button to be used once all the editing is done. My intention is to present the table data to the user via the DataGridViewer; allow the user to manipulate it, and simply read through each row in the DataGridView and process it. I don't even need to update the source table. However, the rowcount property is not updated to reflect the fact that there are less rows subsequent to the user deletin ...Show All

  • Visual Studio Team System Team Studio builds successfully but Summary Build name access gives TF42002

    --------------------------- Microsoft Visual Studio --------------------------- TF42004: Team Build failed to open folder \\srbuild\share\ThirdDebugBuild_20060220.8 . Logon failure: unknown user name or bad password. --------------------------- OK --------------------------- I get this error about unknown user or bad password after a successful team studio build on client side accessing server. This upon clicking on the link under the Summary: Build Name: entry. Please note this \\srbuild\share was entered in UNC and has full permissions to the TFS Service account as well as EVERYONE. When I remote desktop to srbuild and follow the link as either TFSService builder account or Administrator I can access all ...Show All

  • SQL Server b-tree structure.....

    Can someone explain me or let me know the URL where I can find more details about b-tree structure. I am more intrested in the calculation that is done in one of the articles below. ---------------------------- Artcile ---------------------- With the 900 byte key, 8 rows can fit per database page. This means there will be 12500000 pages at the leaf level, 1562500 pages at the next level up in the b-tree and so on, giving a total of 12500000 + 1562500 + 195313 + 24415 + 3052 + 382 + 48 + 6 + 1 = 14285717 pages (including 1785717 to store the upper levels of the b-tree). -------------------------------------------------------------- How is 1562500 , 195313 , 24415 etc are calculated.... from 12500000 leaf pages. Each ind ...Show All

  • Visual C++ Exeute a program from within C== program

    I am converting from DELPHI which used a USES statement to notify program of another program that will be called. In Visual C++ Visual Studio 2005, I have not been able to discover the command to execute a program from a running application. I started a single solution with 4 projects. Each project controls an individual database. From a main application screen, a user will select a database to enter data. This selection is suppose to start a new application or form that allows the user to input data which will be stored into the database. When done, the program should close and return to the main application. I have 3 books on Visual C++ and 2 on Visual C++.NET. There are no hints in these books or on HELP screens that tell me how t ...Show All

  • SQL Server How many user current "connect" to a row in table.

    Hi all... Iam a newbie and i have one question want to ask experts ... . I am current working on one App which have some user connect to database at the same time. And i want to know: how many user connect or use (read , update) to one row in a table Could it be possible to know that If you have one solution to solve this problem , please let me know :) ... Could it be done by Software , T-SQL or anything ...., iam happy to know. Thanks all. Hello, There's actually no straightforwarffd answer as this will depend upon the transaction isolation level which will in turn determine how many transactions may read a row as well as what state the data read will be in (dirty, comitted etc). Only one transaction can ever modify a row. ...Show All

  • Software Development for Windows Vista Waht is Windows Vista-based application?

    Hello, I am reading "Windows Vista Developer Story" since I want to know the design concept of Vista WRP. In the article, it says "The following mitigation will not be applied if the application is identified as being a Windows Vista-based application". I am curious about the meaning of "a Windows Vista-based application", is there any article or document about this How to define a Windows Vista-based application Hope you guys can give me a clue, thanks! Hello nothingmag, Can you please provide a link to the site you are refering to I have checked both the Windows Vista Developer Story and the Application Compatibility Cookbook and I can not find th ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Wav cutting off

    I'm having a problem playing WAVs. I followed the simple tutorial for playing a sound, and it often works flawlessly. However, for some wavs, the sound cuts off early at times, even when only playing once with no overlapping. I would paste in the code, but its the same as the tutorial. I'm wondering if there are certain caveats I need to know about. s You are right, that is what was probably happening. I was guessing it may have something to do with garbage collection since my Cue object was kept around. I thought it may be adding that Cue to the soundBank. Anyway, I used your simpler method suggested and it works like a champ. Thanx! *Jinx ...Show All

  • Visual Studio 2008 (Pre-release) Mapping to the "varchar" field?

    What is the correct mapping to the database table with "varchar" field type The vNext wizard mapped it like this: <Property Name="GUID" Type="varchar" Nullable="false" MaxLength="60" /> Everything compiles fine, but at runtime it raises error, complaining that varchar and nvarchar are not compatible. If I modify mapping manually to look like this <Property Name="GUID" Type="nvarchar" Nullable="false" MaxLength="60" /> everything compiles and works OK, but then I do not understand where is the magic of converting unicode to non-unicode chars happens and what is the downside of this fix Alex Atul Adya - ...Show All

  • Visual C++ HTML in WebBrowser->DocumentText Recognised as C++

    If there is a link in a DocumentText HTML Page: <a href="http://forums.microsoft.com/MSDN"> A link </a> everything after the http:// is recognized as a comment (because of the //) therefore screwing up the embedded web page and giving syntax errors. VC++ also gives various other syntax errors inside the DocumentText string^. Is there a way to stop Visual C++ from mistaking data inside a string^ for c++ code Here is my exact code(as 1 line) this ->webBrowser1->DocumentText = "<HTML><BODY><script src=" http: //tor4.runescape.com/lang/en/aff/runescape/plugin.js lowmem=0&plugin=0"></script></BODY></HTML>"; I need help! ...Show All

  • .NET Development Webservices redirected in a NLB environment

    Hi all, I have a problem with my web service: when installed to certain servers (e.g. load balanced) the client calls do not reach the web service The environment is set up as follows: 2x 2003 servers (No SP installed) running IIS 6 and ASP.NET 1.1 SP1 The load balancer is BigIP (hardware) and the two web servers are set up to use HTTP port 81, whereas the LB exposes a HTTPS URL to the outside world. The client is a windows application not written in .NET. Briefly what happens is as follows: the client connects to the public URL https://myserver/.../myservice.asmx and calls one web method it knows about, sending an xml file that the web service has to process. Unfortunately the xml does not reach the web service (I'm SURE about this) and ...Show All

  • SQL Server How to allow remote connections to SQL Server 2005 Express database

    I've developed an asp.net 2.0 web app with vs 2005 and am using a SQL Server 2005 Express database. The app works fine locally, but after uploading to the remote web server the following error occures: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) How do I go about granting remote connections to SQL Server Express Does the web server have to have SQL Server Express installed in order to run apps that utilize SQL Server 2005 Express databases Do I grant access locally ...Show All

  • Visual C++ how to fix the problem of error C2567: unable to open metadata

    I created some lib and want to used it, but whan I add those lib to my project to use error is occur, 2>d:\worldeditor\Work_PhysX\EventEditor\AssemblyInfo.cpp : error C2567: unable to open metadata in 'd:\worldeditor\eventeditor\atg\debug\stdafx.obj', file may have been deleted or moved 2>LINK : fatal error LNK1257: code generation failed it will link to my local machine direction obj file and the other machine don't have such file, how to setup the lib project to compiler and get correct lib without link to the metadata *.obj thanks :) ...Show All

  • .NET Development HTTP 405 method not allowed

    Hi all, I want to upload an image from mobile to my PC. I'm using the HTTP(POST) method for doing that. all the time I get "405 Method not allowed" error in the mobile. Is the IIS support this way or I have to do that otherwise. With downloading image to the mobile I did it, but uploading the is a problem Have to make certain configurations to the IIS. Is ther other ways to do tha. An important thing to say that the mobile is working with j2me platform so the HTTP posting I impemented in java. Any ideas, best regards... Getting this error from some mobile devices from ASP.NET 2.0 web page posting through a master page login, then doing a response.redirect to a mobile form. F ...Show All

©2008 Software Development Network