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

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

satishchebbi

Member List

Helinho
Kamardash
SForman
ParkSys
Captain Nimmo
Ian Ferguson
Adrian Militaru
Frank Walker
kalypsys_jw
NeilDholakia
Coqui
tom ferguson
btreff
DiamondDavo
Judoshiai
AdamW
TonyKing
kyeran
Digant Desai
JanusTorres
Only Title

satishchebbi's Q&A profile

  • Visual Studio 2008 (Pre-release) Could not find schema information for the element 'http://schemas.microsoft.com/.NetConfiguration/v2.0:system.serviceM

    using CTP bits i can rebuild the samples and all ok - building my own project i get the following error: "Could not find schema information for the element 'http://schemas.microsoft.com/.NetConfiguration/v2.0:system.serviceModel'. C:\Documents and Settings\jim\My Documents\Visual Studio 2005\Projects\msnsearchclient\MSNsearchIndigo\app.config 3 6 MSNsearchIndigo" all of this is using VS 2005 beta2. jim Hi Jim. Let's try something first: I often get this error when there's something wrong with my code, but the schema errors end up appearing first in the build window. When you have this, scroll through the entire li ...Show All

  • Software Development for Windows Vista Installation hanging (Dec CTP 5270)

    I'm installing Vista Dec CTP (5270) on a HP Pavilion zd8000 (3.2 ghz, 2gb ram, 7200 rpm drive), and I get a screen that says "completing installation", but then that changes to a screen that says "Installation is taking longer than expected, but should be finishing soon." I left it on all last night (10 hours), and all day today (8 hours - after I started the installation over), and it stays on that screen. Any advice gibbensr@hotmail.com Many thanks to TPM01 for the suggestion that disabling the wireless hardware on a Dell laptop would allow one to get past the problem of the installation of build 5270 han ...Show All

  • Windows Forms Synchronize scrolling in 2 richTextBoxes in C#

    Dear All , I have 02 richTextBoxes in a form and there is a correspondance in the content of one RTB to another. So I need to synchronize the scrolling of these 02 RTB s. Hope anyone of you all may know a way to do this in C#. Thanking in advance. Hi! I tried both versions, each of them has a drawback. The first version includes scrolling with mouse wheel, but (you have said) the confinement is the triggering at SB_ENDSCROLL. Your new version fixed this, but you can not scroll the rtb2 through mouse wheel anymore. Furthermore if you click at the scrollbar up/down arrows at rtb1 I've got ...Show All

  • SQL Server noob syntax question

    What am I doing wrong : DELETE FROM tblmainacs2 WHERE tblmainacs2.IDnum = Meter.id I get this message: Msg 4104, Level 16, State 1, Line 1 The multi-part identifier "Meter.id" could not be bound. Thank you. That query did exaclty what I wanted. Could someone show me some different queries that do exactly the same thing, just for learning purposes. Thanks in advance ...Show All

  • Windows Forms Chat room server/client program?

    Does anyone have any idea of using web services to host a chatroom by using .NET framework for both server and client programs that will also function as crossing between different operating system such as Mac. and PC the support for windows form, System.Windows.Forms is still in work by those 20 odd mono developers. mono use for front en ...Show All

  • Visual Studio CompartmentShapeMap

    Hello, I try to map a domain concept to a compartmentshape with the June release of the DSL Tools. I add a ShapeMap to the Diagram --> Shape Maps in the DSL Explorer, which works perfectly. When I try to run the solution, I get an error that I should map the concept to a compartmentshapemap, but I do not know how to do that. Thanks in advance Alexander Hi Alexander, Unfortunately there isn't a way to add a CompartmentShapeMap in the DSL Designer at present - it's one of the unfinished bits! Close the DslDefinition.dsl; then open it as XML. In the XML, look for ShapeMaps (inside Diagram) and add ...Show All

  • .NET Development xsl in dotNet 2005

    The following Source code from an .aspx page worked fine under dotNet2003, but doesn't work under 2005. All <xsl: statements are marked as errors. Please help!! < xml version ="1.0" > < xsl : stylesheet version ="1.0" xmlns : xsl ="http://www.w3.org/1999/XSL/Transform"> < xsl : template match ="root"> < html xmlns ="http://www.w3.org/1999/xhtml" > < head runat ="server"> < TITLE > Responses </ TITLE > < LINK href ="../css/response.css" type ="text/css" rel ="stylesheet" /> < script language ="Jscript"> <xsl:comment><![CDATA[ fun ...Show All

  • Visual Studio Team System Custom HostZone

    Hi, I am trying to create an applications boundary shape on the Application layer. I envision it to have similar behavior and shape to the Zone object (Host layer).   I created the following definition but unfortunately it behaves like regular system shape.       < SystemDefinition Name = " SystemsCluster " Layer = " Application " Extends = " System:SystemDefinition " Abstract = " true " >             < Description >                   ...Show All

  • Visual C# please microsoft or anyone tell me why !!!????

    when i debug this code Process p=process.getAllprocessbyName(processName, Remote MachineName); p.Kill(); i have this exeption this feature is not supported in remote machine what i want to say is why microsoft make this function and told us that we can use it for remote machinr in msdn help i found: C# public static Process [] GetProcessesByName ( string processName , string machineName ) Parameters processName The friendly name of the process. machineName The name of a computer on the network . wow I apologize. http://www.codeproject.com/csharp/WMI.asp contains ...Show All

  • Visual Studio 2008 (Pre-release) WPF Bitmap Effects

    I'm having trouble building the RGBFilterEffect sample from the Beta 2 SDK. I modified my environment for c++ examples like it said in the readme, but I still can't build because of an alleged sytax error in unknwn.idl. What gives Also, it was my understanding that you could create a bitmap effect with a hardware accellerated pixel shader. Are there any examples of this Error 1 error MIDL2025 : syntax error : expecting ] or , near "annotation" E:\Program Files\Microsoft SDKs\Windows\V1.0\INCLUDE\unknwn.idl 108 ...Show All

  • Visual Studio Team System Accessing work item history from API

    How do I access the work item history from the API I want to traverse the history of the work item by entry if possible. If it is not possible, a string with all the history will help too. Thanks Hello You can fetch the work item of a particular revision from Work Item Store and then access the History Field to get the History. A sample code is here: WorkItem wi1 = WIStore.GetWorkItem(wi.Id); wi1.Open(); wi1.Title = testTitle + "Random Text"; wi1.Description = testDesc + "Random Text"; wi1.History = "Random Text"; int revisionNumber = wi1.Revision; wi1 ...Show All

  • Windows Forms Getting Project NameSpace

    How can i get the namespace of my running project by code Thanks to you answers, take a look at this link, i got what i was looking for http://www.gotdotnet.com/Community/MessageBoard/Thread.aspx id=141209&Page=1#142721 ...Show All

  • SQL Server Connecting reporting services

    I am trying to connect "SQL Server Business Intelligence Development Studio" for reporting sevices. I am not able to figure out my connection string. i have te database and the server name. The server is not on my desktop. How do i solve this issue. Thank you Ashish I guess you are trying to figure out the connection string for a data source. If so you can use the edit button and select a few options to let BI studio construct a connection string for you. ...Show All

  • Visual Studio Express Editions activex control in C#

    I am using an activex control with C# (compiled with VB6).....works a little too well. The control itself uses another activex control as well as a .dll. In the VB IDE all is well.... With C#...a method in the control will always fire twice! The control itself saves text to a file. If it saves "a"...it will be "aa". weird. Sorry about that muddied explanation. Yes that "hack" did solve the problem. If I use the compiled ocx (the one "embedded" in my ocx) directly in c# it displays the same behavior. But calling the sub from my vb ocx in c#....it behaves normally. Thanks ...Show All

  • Visual Basic Coding Datasource for Pivot Table

    Hi, I'm on the process of linking my AS2005 cube to VB 2005 using ms pivot table 11.0. However, instead of doing an early binding, I want to code my datasource connection. Do you have any sample on how to do this Thank you chemps I am not sure if I understand the question. Here is a link on how to pivot a table and display it. http://www.vb-tips.com/default.aspx ID=28f49f7c-ec40-4472-9b28-2b9e762316ab ...Show All

©2008 Software Development Network