Software Development Network Logo
  • Architecture
  • VS Express Editions
  • Microsoft ISV
  • VS Team System
  • Visual C#
  • Game Technologies
  • Windows Vista
  • Visual C++
  • Windows Forms
  • .NET Development
  • Windows Live
  • Visual J#
  • Visual FoxPro
  • Visual Studio
  • Visual Basic

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

jhclouse

Member List

Hiran Das
Paul P Clement IV
connie graham
Vykintas
ABC-INDIA
SmilingMG
R Raghu
MatrixResolver
codecraftsman
KevinBooth
Bruno Saboia de Albuquerque
SamSmithnz
pablo_q
virage87
KC k_cheung
Guennadiy Vanine
SL-USA
glynnd
pittpanther
panzin
Only Title

jhclouse's Q&A profile

  • Visual Studio Express Editions Taking a certain part of XML...

    Hello, I know that the title is not at its best but... anyway, I need to strip out: http://img.maps.yahoo.com/mapimage MAPDATA=eJz6K.d6wXVM6myr2yRPfx6.kl.uMGgD3Tu4JtDQzr_33pFEsTTSaosZ9OCtsiDrsLv9t65fzjz0CJm6JO2v_ZIHLflY9gto.xWMK9ovlRJVmrBLO4FoSsh3Ipsr from: < xml version="1.0" > < Result xmlns:xsi =" http://www.w3.org/2001/XMLSchema-instance " > http://img.maps.yahoo.com/mapimage MAPDATA=eJz6K.d6wXVM6myr2yRPfx6.kl.uMGgD3Tu4JtDQzr_33pFEsTTSaosZ9OCtsiDrsLv9t65fzjz0CJm6JO2v_ZIHLflY9gto.xWMK9ovlRJVmrBLO4FoSsh3Ipsr </ Result > - <!-- ws01.search. ...Show All

  • Visual Studio Express Editions System.IO Namespace in VS Express

    Is it possible to use the system.io namespace in VS Express and if so how I want to be able to use directoryinfo in my app to populate a dropdownlist with file names from a specific directory. Thanks! Duncan http://www.programmersheaven.com/2/Les_VBNET_15_p1 Ed ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Creating a HBITMAP from a LPD3DXBUFFER

    Creating a HBITMAP from a LPD3DXBUFFER First of all is this possible Below is my current code with the annotated space where this transformation is required. HBITMAP MyClass::ScreenGrab() {    //RenderTargetSurface.    IDirect3DSurface9* pRenderTargetSurface = NULL;    //DestinationTargetSurface    IDirect3DSurface9* pDestinationTargetSurface = NULL;    //DisplayMode    D3DDISPLAYMODE d3dDipMode;    //HBITMAP that will be the return of the method    HBITMAP hbm;    if (m_pd3dDevice == NULL)       return NULL;  &n ...Show All

  • Windows Forms writing the euro symbol ("€") to a ascii or utf 8 textfile

    Hi, I'm trying to write the "€" Euro Symbol to a textfile with either UTF8 or ASCII encoding but it doesn't work. The Euro symbol is returned by the currency formatting of the string. Can anybody help me Michael Hi, some additional information: I think this is an encoding problem, since the german letters "ü","ö","ä" a ...Show All

  • Windows Forms ListViewItem.EnsureVisible() problem with grouped Listview

    I have the following problem: When I call EnsureVisible() on the ListViewItem of my desire, or ListView.TopItem = myItem my Item is not always visible or on top of the ListView. My ListView is one using Groups. Any suggestions Tnx Hi, Based on my testing, I can not reproduce the problem. I added 10 items into the listview, the list view is in group. private void Form1_Load(object sender, EventArgs e) { this.listView1.TopItem = this.listView1.Items[19]; this.listView1.Items[19].EnsureVisible(); } I suggest you test from a new created project. If the problem persists. Can you post the detaile ...Show All

  • .NET Development xmldocument class

    can you use the xmldocument class to create a xml document from scratch, or do you first need to use xmlwriter to create the file You can create a XmlDocument from the scratch. Use the Create methods to create XmlNodes and use the Append method to append the XmlNode to you document. Here is a little example: XmlDocument doc = new XmlDocument(); XmlElement myElement = doc.CreateElement( "MyElement" ); XmlAttribute myAttribute = doc.CreateAttribute( "MyAttribute" ); myElement.Attributes.Append( myAttribute ); doc.AppendChild( myElement ); doc.Save( "c:\\test.xml" ); ...Show All

  • SQL Server 2005 Query help

    Please help. On sql 2000 i have a query like this where the columns are primary keys. Select count(*) from db.dbo.table1 where convert(varchar(3), col1) + convert(varchar(10), col2) not in (select convert(varchar(3), col1) + convert(varchar(10), col2) from db.dbo.table2) It completes in 1 second with sql 2000. I have restored the db to sql 2005 and run the same query. The processors peg and it goes to la la land. I have updated statistics and installed SP1. Anyone have ideas The sql 2005 is even way better than the sql 2000 box. If you have a better way to perform the same task, please let me know. Thanks! ...Show All

  • SQL Server SSIS Custom Component DerivedColumn programmatically problems

    dear experts, i'm trying to build a package programmatically from client c# application. I'm working to create three dataflow components: - OleDB Source - Derived Column Transformations - OleDb Destination. My package works good, but i have several problems when insert an expression as Value of an IDTSCustomPropriety90 object, like this one: [LEN](#firsname.lineageID) &gt 5 <<if true>> : <<if false>> Simple expressions like concatenate strings, for example "#firstname.lineageID" + "#lastname.lineageID" seem to work good. Thanks a lot in advanced. Paganelli Francesco ...Show All

  • Visual Studio Tools for Office Dynamic Range in Excelsheet

    Hi, Actually I am having some problem while getiing dynamic range. I dont want to get range through Excelsheet column's alphabet i.e. through A, B, C etc, Suppose I want to get the range between A to D upto 100 rows in the Excelsheet then we can write code as follows: Excel. Range objRng = this .Range[ "A1:D100" , System. Type .Missing]; BUT I want to find the same area of range without using alphabets A & D, only through numbers. How can I make it possible it in VSTO Thank you The most flexible way to get ranges dynamically is using Cells[row, column] as par ...Show All

  • Windows Forms Is there a control container can support scrolling?

    I want to design a winForm has a large amount of controls.Can I find a container which support scrolling So that I can easily deploy the controls and the user can easily find the specific controls via scrolling... ...Show All

  • Visual Basic Obtain all the Windows in Desktop

    Hello to all,                How can I obtain all the Forms in a certain application, (or all the windows in the desktop) to compare the Caption of the form( or the window Caption) of all of them Thanks in advance,                                                           Zodraz ...Show All

  • Windows Forms Binding controls at runtime vs design time

    Hello, I have a problem that's driving me crazy. I have two similar Windows forms with databound controls. One was originally created by the VisualStudio DataForm Wizard, the other I built from scratch. The Wizard one's controls are all bound at design time, the scratch one's controls are bound at run time. When I manipulate controls programatically (e.g. change the CheckState of a CheckBox) on the Wizard form, it creates a Proposed version of the DataRow and everything is great. But if I do the same on the scratch form, the DataRow status gets set to modified but no Proposed version is created, so when I try to do things like update a DataS ...Show All

  • Visual C# "There is no source code available for the current location"

    Hi, I was hoping someone could help me with the following problem. I have a user control in C# which is displaying the message "There is no source code available for the current location" (there is nothing else in the message) when I step through the validate function attached to a textbox control. I've isolated the problem and attached the source code below for this. I've had a look on the internet for postings regarding this issue and am doing everything that is recommended. It seems that there are four things required for this message to come up: 1. The controls need to be bound to an underlying data source, 2. The error provider (whic ...Show All

  • .NET Development selecting record from xml file

    Hi, I've an xmlfile which has custname,custid and orders. This xml file is created dynamically. In the form(design page), i've a datagrid ,combobox and one button. if i select >2 in combobox,then grid has to show the customers (like name, id,orders) who have ordered more than twice. how to write a query for this developing apps in VB.NET. Thank U! This depends on how you want to structure your data. I can offer you two approaches to consider: 1. Load you XML to DataSet and create mapping from DataSet to DataGrid. (go to http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=45&S ...Show All

  • Visual Studio Team System how to create entirely new report

    Can any one tell me step by step procedure for new creating reports from TFSWarehouse Reports like Details about the checkin and their details like who checkin what check in etcs Hello Prasad, If you are new to reports then creating new reports requires some learning time. You will need to get familiar with at least one of the tools that are available to create reports. One of them is Report Designer and you can find documentation for it here: http://msdn2.microsoft.com/en-us/library/ms155805.aspx . ...Show All

©2008 Software Development Network