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

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

esb

Member List

dni
Gary7
sureshv
andyhull
Nihad
BlackMan890
Nazmul
dougua
JRLiem
George Clingerman
Batico
AzurianArcher
Nagarajan Murugan
Adrien Regimbald
NetPochi
Ir_Vin
sun919
Perwel
MikeLR
Rykin Poe
Only Title

esb's Q&A profile

  • .NET Development Please help - XMLTextReader & DetailsView question

    Hi all! I'm stuck on trying to filter out the information displayed in my DetailsView. What I want to do is to display certain xml data(e.g. Title, ISBN and Author), but not all of them (e.g. Title, ISBN, Author, Book edition etc etc) What can I do Thanks a lot!! Here's what I have. protected void ButtonSearch_Click( object sender, EventArgs e) { string isbnvar = TextBoxISBNSearch.Text; XmlTextReader myReader = new XmlTextReader (localURL + isbnvar); myDataSet.ReadXml(myReader); DetailsViewISBN.DataSource = myDataSet.Tables[4]; DetailsViewISBN.DataBind(); } Try myDataSet.Tables[4].Columns[3].ColumnMapping = MappingType .Hidden to hide column 3. See MSDN page of ...Show All

  • Visual Studio Team System Source Control Toolbar issues

    I have both "Source Control" and "Source Control - Team Foundation" toolbars enabled, when I open a .cs file under source control (so it's the active document I'm looking at) the "compare" button stays disabled. How can I enable this button or compare the current document to the latest version at a click of a button You are opening it from the source explorer I understand, don't you the most probable cause you can't compare it, is becouse you need to download the file to your workspace, and then use the compare option ...Show All

  • Visual Basic Printing Problems

    When i take printouts directly from the forms with the MSFlex Grid in it.... Printer never prints the MS-Flex grid box neatly... The Grid box in the hard copy is totally printed with a dark gray color... and no text will be seen... Even if i change the background coor of the grid box ... it is printed with a dark gray color.... Can any one please help me what to do to get it prinet properly....... Hi Siddarth, You don't say, but since this is the Power Packs forum I assume you are using the PrintForm component. Have you tried using different PrintOption settings (CompatibleModeClientAreaOnly vs ClientAreaOnly) The two settings use different implementations to cature the form, so sometimes one will give better results than the other ...Show All

  • SQL Server BI Portal connected to analysis services 2005

    Anyone has connected the bi portal with analisys services 2005 I have a security problem. Thanks I don't think http access will change much. The fact that Excel works, proves that You can authenticate to the AS server using your Windows credentials The OLEDB provider for Analysis Services 9.0 is setup and working correctly The cubes are processed and are available for querying. Just to double check, when you sat that you have "the last owc" I assume you mean that you have OWC 11.0 that comes with Excel 2003. I am also assuming from your earlier posts that you can actually see the OWC control and that the errors are appearing where the data is normally displayed. Do you have access to any oth ...Show All

  • Microsoft ISV Community Center Forums Data pickup Issue

    Hello Every body, I face a problem about data pickup from datasource. ok i try to explain it first. Some my ui have different combo box. comboboxes contain data like Panel, Reader, Badge etc devices. each combobox contain single object data. in left side of every combo, one check box item is there. if combo box will checked then combo box will be enabled and show its data other wise not. In that senario user may check all checkbox or not any singel check box. It totally depends on the user. In that senario what i did, I pickup all data from database and bind it to the combo box when form first time loaded. that means loading time of form i request to my business layer to give me all data. Is it correct approach. Thanks for advance help. ...Show All

  • Visual Studio Express Editions how to change color of titlebar

    How do i change the color of the title bar in vb express 2005.i want to change it from the xp blue to the vista grey.how do i do it I played around with implementing the WM_NCPAINT message to paint a custom window frame. It used to work back in the good old days, but no longer. The code below is semi-functional but missing a lot of functionality. I kinda gave up when I saw the original XP themed frame show up when I Alt+Tabbed away from the window and restored it. Maybe you can make it work... Imports System.Runtime.InteropServices Public Class Form1 Public Sub New() InitializeComponent() Me.ControlBox = False End Sub Private Sub FramePaint(ByVal gr As Graphics) '--- Create a device context and graphics object for the fra ...Show All

  • Visual Basic Export VB3.0 data?

    No, that's not a typo, I'm talking VB3.0. I'm working on something for a client of mine. He has a database stored in VB3.0 running on Windows 3.11. I am upgrading him to two XP POS systems and a 2003 server. We are going to be using some other kind of database software, but would like to save the data from the old VB3.0 database. I'm sure the answer is yes, but I have to make sure of it. Microsoft didn't have an answer for me so they referred me here. The question is can Visual Basic 3.0 data be exported, and if so what kind of format can it be exported to CSV, etc I know this software is very old, but any kind of support would be GREATLY appreciated! Thank you, Brian I am not sure ...Show All

  • Windows Live Developer Forums VE 3, MS Ajax beta 2 and IE7 weirdness

    I just updating a site to use MS Ajax beta 2, from beta 1. Everything was fine under beta 1, but code that used to work under beta 1, is throwing an error under beta 2. Oddly enough it all works great under IE6, but not 7. I have just spent some considerable time examining the data, and everything looks fine. The problem seems to be with drawing a poly line, i.e. simply commenting out the line which adds the polyline to the map stops the problem happening: map.AddPolyline(poly); The array of lat/long looks fine, there are no nulls or anything odd, and doing ' map.SetMapView' on the array of points is fine too. To make the problem even more maddening, the problem is intermittant, and only on IE7, so for the moment I'm giving up ...Show All

  • Visual Studio 2008 (Pre-release) Declarative creation of DependencyProperties

    (split from this thread ) I was wondering if it was possible to create simple DependencyProperties declaratively using Xaml I haven't found any way to do so, but it seems logical that there should be, given all the other things that can be done declaratively. I was expecting something like: <UserControl x:Class="WPFTest.Test" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" DataContext="{Binding RelativeSource={RelativeSource Self}}">     <DependencyProperty Name="Color" Type="{x:Type System.Windows.Media.Color}"/>     <TextBlock Text="{Binding Path=Color}">         <Tex ...Show All

  • SQL Server Best way to store information

    Hi, I am using MSDE in my applications. Sometime the tables are large and it takes a time for reading the data by query. 1. If I split the tables it can help me or not 2. May be exist another way to read the data My application wrote in C# (dot.Net 1.1) using ADO (SQLClient). Thank's Alexei there are a lot of things u can do to reduce the time taken...eg..tune ur queries, create indexes on tables..etc... but comming to ur specific questions 1. spliting the tables... as ur using sql server 2000 msde , horizontal partition is not too well supported..and it helps most if u keep the partitions on different drives , having seperate headers.....this article gives some info http://www.sqlteam.com/Item.ASP ItemID=684 2. other way ...Show All

  • Visual Studio Team System TFS-Setup

    I've tried setting up TFS 5 times now. what a joke. each time i have come up with a different error. might i add, that it isn't a short install either because i always have to uninstall everything and re-install everything. in my 10 years of working with computers, i have never come across anything as finicky as this. i have gone throught the install guide word for word four of the times. there has to be an easier way to do this. Roger that! I am getting the sharepoint database error and yet each time I follow the directions on how to re-install SPS for TFS it does no good. WTF! ...Show All

  • SQL Server Simple summation

    Dear all, I am attempting to do a simple summation statistics calculation with T-SQL to count rows based on an int column FK relationship to another table. I have two tables: (1) document, and (2) filespec. Both tables have an int primary key column and some miscellaneous columns. Filespec has an int field which is keyed to the primary key of document (FK constraint), thus, each document can have zero-to-many file specifications. Example: Document Table: DocID Name 1 Approved Plan 2 Photo Gallery Filespec Table: FileID DocumentID Name 1 2 First Photo 2 2 Second Photo Expected Result: DocID FileCount 1 0 2 2 How to generate this result Thanks in advance for advice. ...Show All

  • .NET Development Asp.net web service problem

    In our project we use asp.net and asp.net web service..... in our local network......... asp.net web application invoke web service..................works fine............... but if we try to invoke web service from remote Server(Hosted in australia in Windows 2003) to our local machine.(Windows XP) it generate an error of 403 ................ 1) how can we create an web service that hosted some where and invoked by any application 403 is an security error thrown by IIS. You need to investigate your security access levels. If you dont want authentication on the virtual directory, turn Integrated Security off and turn on anonymous access. You can do this in IIS->[Website]->[Virtual Directory]->pr ...Show All

  • SQL Server SQL Server 2005 Service Pack 2 - RTM - WHEN???

    Hi, Does anybody know how many CTPs will be provided before the RTM will be delivered Thanks You never know ;-) RTM is planned for Q1 07. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Studio Express Editions validating an entire form

    i have errorproviders on my form to ensure fields are valid, but im wondering what the best way is to check this on the OnClick button event at the moment im using this logic:- If epError.GetError(txtCode) = "" Then Me .DialogResult = System.Windows.Forms.DialogResult.OK Me .Close() End If shouldn't the epError control have a boolean property to tell me whether [any] controls that have been assigned to it are still invalid To find out if the entire form is valid on a click event, call the Form.ValidateChildren method. This will fire the Validating event for all children controls on the form. You then handle the Validating event for each control you want to check on ...Show All

©2008 Software Development Network