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

Software Development Network >> Sarath.'s Q&A profile

Sarath.

Member List

__ButterFly__
ZopoStyle
learnerplates
furjaw
msorens
abhas
ReneeC
tportz
Paulino PP
Matt354245
jwalker343
TimGL
Gomez2006
gauls
jamesIEDOTNET
Grimal
Jason Callas
Ken_Bussell
Brad Smith
fbnts
Only Title

Sarath.'s Q&A profile

  • Visual Studio XslTransform is giving error!!!!

    Hi, I am using December CTP and VS2005 and Sandcastle.config file. When i do XslTransform /xsl:"C:\Program Files\Sandcastle\ProductionTransforms\ApplyVsDocModel.xsl" reflection.org | XslTransform "C:\Program Files\Sandcastle\ProductionTransforms\AddGuidFilenames.xsl" /out:reflection.xml it gives following output XslTransform (v2.2.61208.1447) Copyright c Microsoft 2005-2006 Specify one input XML input file . reflection.xml is not generated... I am not sure what is going wrong.. thanks, Abhi As I recall, piping the output from one copy of XslTransform to another isn't supported anymore. Specify the transforms in a single call in a comma-separated list. ...Show All

  • Visual Studio Express Editions database not saving

    Hi, I've been going threw the Visual Basic Guided Tour.  I'm in Managing Your Records: Using Data in your Program -> Showing Information to the User: Displaying Data in Your User Interface. The project is to create a user interface to update a local database.  The user interface is Project: Addresses1.Form1.vb .  That is suppose to update project FirstDatabase.Addresses .  When I created the connection using Data Source Configuration Wizard , I got a prompt asking me if I wanted to copy the data file to my project.  Following the instructions I clicked yes . In the project Addresses1 I have the following in solution explorer: Addresses1 --My Project --add.config --FirstDatabase.mdf ...Show All

  • Windows Forms WebBrowser Control

    Hi ! I am new to Framework 2.0. I have a small query. I know it is possible but I need help. I have tried every way out but not working. I want to auto click on the form/button on any website inside my application. HtmlDocument doc = webBrowser2.Document; HtmlElement element = doc.GetElementById( "Save" ); I dont know how to move from here for auto clicking of the button or auto submission of form. I am using C# language. Please help me. Please can you make question a bit more clear after a page is requested and is rendered to client (displayed in browser) .. is there any action or when the rendering is completed .. where you want to autoclick the button .. what fun ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Contour offset of a polygon

    Dear All, I am using DirectX to write application and I cannot figure out how to do this: I have a polygon and I want to create inward contours offset of that polygon by giving number of contours that I want and the distance from one contour to another as well. I would highly appreciate if anyone can advise me the algorithm of doing this Regards, LG Dear BLANC Guillaume, Thanks for your advice. I was trying to find any example on the net but I cannot find one. Could you please advise me the link or just provide a small example of sample codes so that I can learn to do this. You can provide in any language VB.NET or C#. I look forward to hearing from you! Regards, ...Show All

  • Visual Studio Express Editions shlwapi.h not found

    I have some source that needs shlwapi.h, but the compiler cannot find it. I searched the entire Platform SDK tree, the file simply does not exist. ShLwApi.Lib does exist, but not the header file. I already tried a Repair install of the Platform SDK, but the header file is still missing. Since I did not install everything of the Platform SDK (for disk space reasons), there's a remote chance that I left out some feature that would contain the header file, but I can't imagine which one.   mojo_risin wrote: Where can I download Web Workshop The Web Workshop is a component of the Platform SDK . The Platform SDK is actually a collection of several smaller SD ...Show All

  • Windows Forms Graphics.PageUnit and dotted lines on forms

    I am trying to create an application which uses GraphicsUnit.Millimeter but I cannot get the lines to draw correctly. In the code below using GraphicsUnit.Pixel (Type=1) in my coding correctly drws 3 lines in the order dotted, dashed, solid from the top of the page. Using GraphicsUnit.Millimeter (type=2) draws the solid line in the correct place but the dotted line is below it and thick , the dashed line below that Using GraphicsUnit.Inch only the solid line, correctly drawn, appears Private Sub tGraph_Paint( ByVal sender As Object , ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me .Paint Dim gr As Graphics Dim Type As Integer Dim GWidth, Factor, YPos As Single Type = 2 gr = ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Extremely low Framerate

    I am getting a very very slow Framerate. I will post the code of my Engine component. It's a GameComponent added to the main component through the Designer. public partial class Engine : Microsoft.Xna.Framework.GameComponent { public Engine() { InitializeComponent(); } public override void Start() { CompiledEffect compiledEffect = Effect.CompileEffectFromFile("Resources/Simple.fx", null, null, CompilerOptions.None, TargetPlatform.Windows); effect = new Effect(graphics.GraphicsDevice, compiledEffect.GetShaderCode(), CompilerOptions.None, null); graphics.GraphicsDevice.RenderState.CullMode = CullMode.CullClockwiseFace; graphics.GraphicsDevice.RenderState.SourceBlend = Blend.Sour ...Show All

  • SQL Server Can SSIS work without SQL SERVER 2005

    Can I install only [Bus....integ.. dev.... st..]. on my machine without SQL 2005 I have a sybase database management system.. can I work with SSIS Can it extract something from IBM DB2/DATACOM/LOTUS NOTES/VSAM/   pl give me answers with justifications!!!! AmyS wrote: Hi, Any help is greatly appreciated. I've looked through many posts in this forum, and have summarized the following. If anyone can confirm this, it would be very helpful. SSIS comes with SQL Server 2005. While SQL Server 2005 does not need to be installed to execute an SSIS package, you do need Integration Services installed and running on the box where you want to execute the package. Additionally, you need the DTExec and DTExecu ...Show All

  • Windows Forms Listbox to show options from a related table

    On a Windows form, I have textboxes to show data rows of a main table. The main table has a foreign key to a minor table which is a list of status values ("Pending", "In Progress" and "Done"). The object is to display the status in a listbox or combobox. I want to know how to do this. Some notes: 1) The code to set up connections, DataAdapters, CommandBuilders, bindingsources, Datasets, etc works fine. 2) I would like to set up any constructs in code rather than with a wizard. 3) Unless I have to I want to avoid creating the relationship between the tables in the wizard. 4) I get the sense that one Dataset can access and update both tables, but I don't know how to tell the dataset about additional tables. ...Show All

  • Visual C++ how to read Japanese characters from a file

    how to read a japanese characters from a file using Visual basic 6. I am using the following code, but it is failed to read the kanji characters. <Dim oStream As New ADODB.Stream Dim iNo As Integer oStream.Open oStream.Type = adTypeText oStream.Charset = "ISO-2022-JP" oStream.LoadFromFile (App.path & "\Temp\item.dat") oStream.Flush Text1.Text = oStream.ReadText Set oStream = Nothing> please help me... This is a C++ language forum. You should either ask that question in the VB forums, or in one of the newsgroups. See http://forums.microsoft.com/MSDN/default.aspx ForumGroupID=10&SiteID=1 . ...Show All

  • Visual Studio Express Editions Using removehandler for unknown events

    Does anyone know if it's possible to remove an event handler when you don't know the name of the event handler sub Let's say I define an event handler: Sub EventHandler() ' Handle the event. MsgBox( "EventHandler caught event." ) End Sub I add the event handler: AddHandler Obj.Ev_Event, AddressOf EventHandler Then if I need to remove the event: RemoveHandler Obj.Ev_Event, AddressOf EventHandler BUT, let's say I don't know the name of event handler (EventHandler). Is there a way to remove an event handler if you don't know the name of the actual sub Thanks! No, I don't think this is possible in VB.NET. In C#, an event is a simple instance of a ...Show All

  • Visual Studio Team System Bug: 2005 is missing in Add/remove program and setup dialog boxes in some part

    Small bug in the setup: The 2005 part of the product is missing in the setup in some parts. It is only Visual Studio Team Edition for Database Professionals instead of Visual Studio 2005 Team Edition for Database Professionals as it is in pictures and the rest of the VS 2005 team family products have. I guess they should appear next to each other in Add/remove programs since they are part of the same team family. Best regards Niklas Engfelt I saw that it is missing in the ReadMe of CTP5 as well. In the Requirements it says that you should have Visual Studio Professional Edition. If you are not having any year, that is the 2002 version, and I think that is not working with Database Edition. ...Show All

  • Visual C# Changing code editor background color?

    Hey all, Like quite a few people, i love my late night coding sessions, one thing thats been bothering me for a while is the background color of the code editor in Visual Studio, and the fact that I cant change it to a lovely black color instead of white to save my poor little eyes from strain. Is there anyway to change it without me having to set custom settings on my monitor just to turn the contrast and brightness all the way down hehe :) Any help would be greatly appreciated, thanks :) Skoby never mind i got it.. lol, sorry for making the post. Tools > Options > Fonts & Colors > Plain Text > Item Background > Black... :) ...Show All

  • SQL Server The ALTER TABLE statement conflicted with the FOREIGN KEY constraint

    The ALTER TABLE statement conflicted with the FOREIGN KEY constraint "fk_Allergy". The conflict occurred in database "MSCPROJECT", table "dbo.Severity", column 'SeverityCode'. I had the same problem... After reading htese message, this is what worked for me... I'm trying to add the constraint on activity_template_id in tbl_work_flow. It references activity_template_id in tbl_activity_templates. I did an update and changed any records in tbl_work_flow without a matching record in tbl_activity_templates to null. Then I was able to add the constraint... update tbl_work_flow set activity_template_id = null where activity_template_id not in ( select activity_templ ...Show All

  • .NET Development Generics question?

    Hi folks, Can anyone tell me how I can call my GetOutputXml function from within my generic list class My list class: public class List <T> : CollectionBase { public List() { } public T this [ int index] { get { return (T)List[index]; } set { List[index] = value ; } } public int Add(T value) { return List.Add(value); } public string GetOutputXml() { string outputXml = null ; for ( int i = 0; i < List.Count; i++ ) { T t = (T)List ; // THIS DOESN'T WORK! // HOWEVER, ALL MY CLASSES INHERIT FROM A BASE CLASS THAT HAS THIS FUNCTION. outputXml += t.GetOutputXml; return outputXml; } } } I know I' ...Show All

©2008 Software Development Network