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

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

NetPochi

Member List

Stryfe
NetPochi
George Homorozeanu
Shortty
Allah Is Here
super mary
khalid khan
hr0nix
JRB
alltime
Farhan H Soomro
n3sachde
spanky4_3
Bluehunter
Tigers21
David Christie
mshvw
Helder Santos
dowhatnow
Basani
Only Title

NetPochi's Q&A profile

  • Windows Forms DataGridView Rows reappearing

    Gday, I'm using VS2005 SP1 Vista Beta. In the designer, I have a datagridview which is bound to a binding source which in turn is bound to a table. I have a set of columns which I have customised for the user interface. Now in the designer there is 4 columns. When I click save, there are 4 columns. HOWEVER, when I build/rebuild the project, then the 4 rows I have defined remain, but every column in the table then appears in the gridview after the 4 I have defined (total of 10). What am I doin wrong Hi Spenceee, You're experiencing something I forget everytime I created a DataGridView and bind it to a data source - the DataGridView will automatically create the appropriate columns for your data source. You don't n ...Show All

  • SharePoint Products and Technologies MOSS2007 Active Directory connectivity configuration

    Problem Description Background: A client has purchased a hosting solution for MOSS2007, part of which is a connection to a central Active Directory that the hosting company uses to maintain all it’s hosting solution users and internal staff. The clients location in the AD structure appears several levels down in the heirarchy. MOSS Settings: The Import Connections in the Shared Services Administration have been set with the following: Name: Domain Type: Active Directory Source: Auto Discover Search Base/Entity(Filter): OU= ClientCompany , OU= Companies , OU= Application , OU= HostingCompany , DC= Domain , DC= Domain Server Incr ...Show All

  • SQL Server SQL 2005 Standard error on Windows XP Pro SP2

    When I run the SQLSTD.EXE for the September CTP of SQL 2005 Std I get the following error message: "There is not enough space on drive C:\ to extract this package." I have over 13 GBs on C:\ and I've also uninstalled .NET 2 Beta 2. Anything else I need to do to successfully install this TIA This is a known issue with the compression technology used, please try the workaround specified in: http://support.microsoft.com/kb/301913/EN-US/ .  If this doesn't work, please let us know. ...Show All

  • SQL Server Daylight Savings change

    All, I am curious if there is anything to worry about with the recently adopted change to the Daylight Savings settings and SQL Server Are there any required patches, suggestions, etc Thank you The link above is right. In short you will need to update your operating system, which should happen automatically through Windows Update, but there is no need to patch SQL Server. We were recently reviewing all components to check if there is potential area that needs updating, and we have not identified any. Regards, Maciek Sarnowicz ...Show All

  • Windows Forms UserControl - Hiding certain properties (design mode)

    Hi I have an UserControl , A . This control consists of a TextBox and a Button . A has several user-declared properties, p1 , p2 ... pn . When I add instances of A to a Form, I see all the properties including p1 - pn . If I make another UserControl , B , and add several instances of A to it, how do I get only certain properties of the instances of A visible in the properties window of B For instance, B contains: A a1, A a2, A a3 ; public A A1 { get { return a1; } set { a1 = value ; } } (and so the same for a2 and a3 ) In B 's properties window I only want p1 - pn to be the displayed properties for A1 - A3 . I hope my explanation is understandable :) Kind Regards Hi Chris Now I w ...Show All

  • SQL Server DTS: single SELECT from 2 databases possible?

    Just wondering, in DTS, can I run a SELECT script that selects from 2 different databases (both on the same server) I can run this in Sql Query Analyzer, but in a DTS, it doesnt accept my database name prefixes: SELECT a.something FROM DB_ONE.dbo.product a, DB_ONE.dbo.mp_brand b, DB_TWO.dbo.lk_pcat_cutover c WHERE a.PCat <> c.Pcat (where DB_ONE and DB_TWO are the 2 different db names) I have one connection to DB_ONE... does this mean I cant access DB_TWO when using this connection I want to try and avoid using a temporay table for storing DB_TWO's data in DB_ONE... Is this possible Thanks, Andre ...Show All

  • Visual Studio Team System Delete team project and remove from SCE?

    I deleted two team projects one got removed from SCE and one didn't How do I get rid of the one that didn't and why did one get removed and not the other I understand there is some sort of bug related to this but why one and not the other and there must be a way to get rid of that one that is left right If not do we now know if this is fixed in SP1 I am an admin in TFS but so are other people that can't see it. I don't think I created that particular team project that is stuck (but not sure). There is no x over the icon in SCE. I can't checkin, checkout, undo any pending changes for there it seems (I tried but says nothing to checkout, checkin or undo). Anything else we can try Thanks ...Show All

  • Visual C# ScrollBar overlays on DataGrid view...??

    ScrollBar overlays the DataGrid... so the width of last column of the DataGridView changes when scroll Bar comes up or goes away. So can I make scroll bar permanently visible or is there a way to make up for the offset of Scroll Bar in the Data Grid ...Show All

  • Windows Live Developer Forums Keyword Performance Report summary aggregation

    Hi, I am trying to get a Keyword Performance Report for a custom date range that has the results aggregated for the entered range but I do not seem to be able to get it. If I do not set the ReportAggregation property I am getting an exception about the date range being over 40 days. this is strange because the date range is less than a week. I see that online there is an option to get the report with summary aggregation, isn't there a way to get the same through the API I tried using Year as the aggregation type but I got huge amounts of data. Like 50 times more than using the Day aggregation with all other variables the same. This seems weird as I was expecting a yearly summary and thus a lot less data. Thanks, Tibor ...Show All

  • Visual C# registry.classesroot

    Can some one provide me a demo code using this class. strFilePath= @"C:\Guna\VS2005\AplnOpener\AplnOpener\bin\Debug\AplnOpener.exe" ; regRootKey= Registry .ClassesRoot; regRootKey = regRootKey.CreateSubKey( ".guna" ); regRootKey.SetValue( "" , "AplnOpener" ); regRootKey.SetValue( "Content Type" ,strFilePath); //regSubKey =regRootKey.CreateSubKey("OpenWithList"); //regSubSubKey=regSubKey.CreateSubKey("AplnOpener.exe"); ...Show All

  • Windows Forms Adding a custom control in Datagridview cell

    Hi all, I am a .NET developer and am facing a problem in Datagridview. To start with, I had a combobox as the column type in DataGridView. I was populating this combobox from a database table which had some aroudn 37,000 records. With so many records getting populated in the combobox on the datagridview slowed the datagrid to an exruciating slow speed. To resolve this issue, I thought of writing a custom control which will have a text box and a drop down box next to it. The text box in the custom control will let the users type a search value for the description(display member) and the results will then populate in the dropdown next to it. For e.g, if the users are searching for a company name (america), they will type america in the tex ...Show All

  • Visual C# read HTML content using c#.net

    Dear all, I am trying to read HTMLcontent using C#.net, but its returning content as a unicode characters .so how can i read the characters form HTML. Thanks, Aya. Exactly, but if you want to get raw data and then analyze it byte by byte then better use DownloadData( http://www.google.com ). ...Show All

  • Visual Studio Team System Help needed to resolve a Windows Group/User when trying to add them in Team Foundation Server

    Hello All, When I try to add a Group or User from the domain, I get an error message that Team Foundation Server can't resolve the group or user name. The Virtual Server where the Team Foundation server resides, is on the domain so I am not sure where I need to make a change. Thanks in advance :) Bob Hanson I believe that the necessary Active Directory permission is "Read". In a Domain Controller/DNS machine I've been using for some of my local testing, the Domain Users group has the following effective permissions. My service account is only in this group: Read Create All Child Objects Delete All Child Objects Send To Read Phone and Mail Options Write Phone and Mail Options The two "Child Objects&qu ...Show All

  • .NET Development Delegation problem in FW 2.0

    Delegation not work in 3-tier application. My configuration: Client: Windows App. "Account is sensitive and cannot be delegated" is not selected for user. Middle tier: Windows Service (log on as local system). Server: SQL Server (log on as local system). All computers has "Trust this computer for delegation to any service (for Kerberos only)" selected in AD. Impersonation on Middle tier is work, but SQL Server say "Login failed for user '(null)'". My server config:   <system.runtime.remoting>     <customErrors mode="off"/>     <application>       <service>         <wellknown mode="SingleCall" type="ServerObject.Obj, ServerObject" obje ...Show All

  • .NET Development Problem | Oracle 9i Release + With Vb.Net 2005

    Hai I Am New To Oracle 9i R 2 But I Can Able To Handle Vb.net 2005.How can Able To Connect The Oracle 9i Using vb.net.Is Our Default Dll Support The Oracle 9i Like Imports Sysytem.Data.OracleClient.I Heard That ODP.net Is used This Purpose.I Need To Know Is I Need to Install ODp.net Provider In Client Machine To Run My Application.How can ABle to Run Vb.net with Oracle 9i r2 Without installing ODP.net Provider.If I Create Setup For Vb.net 2005 What Are the Dependencied Need to Run Oracle With VB.net. I Hvae created An Appliation And I setup the Project Automatically Oracle.Access.Dll. is Bind But I cant able to Run Application.Coz The Error Unable to load Dll OraOps9 .dll Please Help me Its vEry Urgent ...Show All

©2008 Software Development Network