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

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

KSK

Member List

Francois vdv
Carl Bruneau
dagjo
Ranier
John12312
readme55555
Mystagogue
BobTheBuild
haihtomy
r3zonance
pfear
Vlad Shimov
zdrae
Noel Rietman
Sudheer Palyam
hadjici2
Luis Alonso Ramos
Andrew Sears - T4G
AVVIT
Itzik Katzav
Only Title

KSK's Q&A profile

  • .NET Development export to excel

    how can i export the data from gridview to excel file without do any looping by using .net framework 1.1. If my data is too large it is posible to export so there solution is convert it to xml first then transfer the xml to the excel mode can you show me some of your code currently im using SQL server direct covert to excel by using looping method, its very slow. thanks ...Show All

  • Visual Studio Team System How to deploy one project to multiple servers...

    I am using the database professional to create a generic DB that I have a copy of on two different servers with the exact same database code (procedures, functions, tables, etc.) and I was wondering how I can use one project to make all my changes and then deploy those changes to each of the two servers using the deploy functionality rather then do a schema comparison for each of the different servers and then running a seperate script on each server. This is fine for a few servers. What approach would you use if there were tens or hundreds involved This is not academic. The last site I contracted at had exactly this problem. Luckily I don't have that problem now :-) ...Show All

  • Windows Forms How to make a licience expire?

    Hi, I have developed a software but I need help on how to issue licences that expire after a given period of time. What is the best way to licence out a software and make it expire and unusable after an year Thank you OK, I can write the date into the registry when they first install the software, but then how can I keep track of how long they have left before it expires What if the user changes the windows date ...Show All

  • SQL Server Failure saving package

    Hello All, I have a package in the SQL 2000 environment that works fine. I have migrated this DTS Package to a SSIS Package using the Visual Studio 2005. After that, i made some changes in this package and now I'm trying to save it but I am facing with this error message below: TITLE: Microsoft Visual Studio ------------------------------ Failure saving package. ------------------------------ ADDITIONAL INFORMATION: Invalid at the top level of the document. (Microsoft OLEDB Persistence Provider) ------------------------------ Invalid at the top level of the document. (Microsoft OLEDB Persistence Provider) ------------------------------ BUTTONS: OK ------------------------------ Could someone please help me wi ...Show All

  • Windows Forms Collection property in User Control

    Hello. I have a question about the user control. I'm making the user control which have a collection of another control. Even though I marked the attritube [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)], it doesn't write the property of the inner control in the "Form.Designer.cs". My codes are here. ------------------------------- public partial class UserControl1 : UserControl { private TestControlCollection mtxtValueColl; [Category("MyTest"), Editor(typeof(CollectionEditor), typeof(UITypeEditor)), DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] public TestControlCollection TestCollections { get { ...Show All

  • Visual Basic Custom HTML phrasing

    I want to create a web browser but i want it to recognize special tags that ie and other browsers can't, so i need it to do its own HTML phrasing rather than using the browser control. I know to to get the HTML source of a page with HTTP Web Request but i am unsure on how the custom phrasing, and how to display the phrased page. I looked at articles about creating a web browser, they all talk about using the web browser control though. Any help is appreciated. interesting one. You could display the page again by setting the DocumentText property to the new page with your own tags detected and modified the original source from the DocumentText property in the webbrowser control. For now this is all I can th ...Show All

  • Visual C# changing label from program.cs

    ok well i have a listener thread in program.cs that listens for messages from my NetworkStream and then needs to acces a label on my Form1 ive tried Client. Form1 test = new Client. Form1 (); test.label1.Text = data; Client being my application name lable1 is probably a label in Form1 class and it cannot be access here because it has by default private modifier. The best way to do it to create a property in Form1 Class like this: public string SetLabelText { get { return this.label1.Text; } set { this.label1.Text = value; } } Put the above code in Form1 class And access it from other class like this: Client. Form1 test = new Client. Form1 (); test. SetLa ...Show All

  • Visual C# change negative sign

    i have a total figure shows -200 and i want to make it display as 200.. Hi there, Is this total you have in a numeric variable (e.g. int, double, short etc) If it is, you can use the System.Math.Abs() function as this will return the absolute value of whatever number is passed to it. For example: Double test = -200.97; Double nonNegTest = System. Math .Abs(test); MessageBox .Show( "Original: " + test.ToString()); MessageBox .Show( "Alteration: " + nonNegTest.ToString()); The message boxes above are for illustration only so that it can be seen what the effects of System.Math.Abs() are. However, if your total is stored in a string variable or the like, you can convert the value to s ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. 3D Modeling

    What is the best free/cheap 3D modeler out there By best I mean a good combination of capable and easy. I have used Maya while playing with UT2004, but the free version won't export .X files. I have a copy of 3DCanvas pro, but I find it lacking somewhat. One of my favorite combinations is D GA CGA and Metasequoia (all free depending on which versions you get.) D GA CGA is a dirt simple to use 3D modelling tool based on a parts bin metaphor. Metaseqouia or Milkshape (shareware) can be used to convert the D GA models into a game mesh. -- TAZ D GA CGA English page ...Show All

  • Windows Live Developer Forums Idea For Windows Live Messenger

    Hey i was thinking today about the, how should i put it.... "sameyness" of windows live messenger and i was thinking that we should be able to design skins for the console to jazz it up a bit this should appeal to the over all feel of windows live messenger and make it more fun rather than just being able to change the colour I wasnt sure where to put this post so plz could admins move it to the right place Post comments on what you think thanks for reading Maybe you should take a look at memskin+ ...Show All

  • .NET Development using dispose/finalize..

    I am trying to understand when a class needs to implement dispose. Lets say my class is using an arraylist and some other resources. Arraylist is a managed resource, so in this case should I be implementing finalize If I don't implement finalize my understanding is that the GC would still do a GC on my class and therefore get rid of Arraylist. What about dispose Do I need to implement dispose Let say I have another class using a windows script object. This would be a unmanaged resource. Do i now need dispose/finalize Thanks I don't know how WinForms implements they're Dispose code, so I'm afraid I can't help you there. The purpose of implementing IDisposable (or any interface, for that ...Show All

  • .NET Development out of memory exception in .NET Remoting v2.0 - TCP Channel Binary formatter

    Has anyone seen this error I am getting it when the server is supposed to return a dataset with response data. The database may be large but not more than a couple of megabytes. can anyone advise what could be the issue System.OutOfMemoryException: Exception of type 'System.OutOfMemoryException' was thrown. Server stack trace: at System.String.GetStringForStringBuilder(String value, Int32 startIndex, Int32 length, Int32 capacity) at System.Text.StringBuilder..ctor(String value, Int32 startIndex, Int32 length, Int32 capacity) at System.Text.StringBuilder..ctor(String value, Int32 capacity) at System.Data.DataSet.SerializeDataSet(SerializationInfo info, StreamingContext context, SerializationFormat remotingFormat) at ...Show All

  • Visual Studio Team System TFS Install Failing

    HI,   I've beeen trying to Install TFS for a couple of days now and keep getting the same errors on the TFS installation.  All teh other components have installed ok and tested as listed in the installation doc TFSInstall-v70205.chm Totally new to TFS so any help would be appreciated. Thinking this is an SQL Connection issue   Am installing single server on VMWare   Here is the VSMSILOG: - === Verbose logging started: 01/03/2007  12:58:43  Build type: SHIP UNICODE 3.01.4000.2435  Calling process: C:\Documents and Settings\ccollinson\Local Settings\Temp\SIT35819.tmp\setup.exe === MSI (c) (8C:88) [12:58:43:735]: Resetting cached policy values MSI (c) (8C:88) [12:58:43:735]: Machin ...Show All

  • SQL Server doctors' appointments - please advise

    i am developing a clinci software and i guess i reached to the most difficult part of it which is the appointment module.. I have made it as explaied below but not sure if i am doing it the right way or if i need to redesign my tables' structure.. please advise.. i have create doctors' duty table: USE [shefa] GO /****** Object: Table [dbo].[staff_duty] Script Date: 11/16/2006 02:25:27 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[staff_duty]( [duty_id] [int] IDENTITY(1,1) NOT NULL, [staff_file_no] [int] NULL, [staff_name] [varchar](255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [duty_from] [datetime] NULL, [duty_to] [datetime] NULL, [record_locked] [varchar](50) COLLATE ...Show All

  • Visual Studio Team System how can i reduce the blank space in <aaa >?

    I want to compare content in webpage and content in xml file. the expected is : <aaa >, the actural is : <aaa>, i think that the former considers blank space. the expected result is from webpage, the actural result is from xml file. how can i reduce the blank space, is this error due to webpage generated or something else thanks i should compare the content: used: Assert.AreEqual(elements[ i ].innerText.ToString(), xnl[ i ].InnerText.ToString(), "Titles are not the same"); i think the webpage should generate <aaa> not <aaa >...   ...Show All

©2008 Software Development Network