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

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

kalingo

Member List

alemayehu
Robert_01
DreamingBear
Austinsnana
J_Dude2003
John Sobernheim
Jose-san
fpizzolo
swapna_n
ivarsv
manishjain9
R.Tutus
Rafael (Live Butterfly)
kkennedy1008
db_cooper1950
Tommix99
ZopoStyle
Sjas
Will Merydith
Imanol
Only Title

kalingo's Q&A profile

  • Windows Forms OpenWord problem

    private bool OpenWord()         {             try             {                 wordApp = new ApplicationClass();                 tname = (object) templateFileName;                 wordApp.Visible = false;                 //wordDoc = wordApp.Documents.Open(ref tname, ref oMissing,ref oMissing,ref oMissing,ref oMissing,ref oMissing,ref oMissing,ref oMissing,ref oMissing,ref oMissing,ref ...Show All

  • Windows Search Technologies Setup error

    attempted to install, setup error as follows Not enough storage is available to process this command. I got over 300 gigs free, how much space does it need I'm running vista ult rc2 Yes, I believe thats where I downloaded it from I have 4 disks total, physical, none have seperate partitions on them. ...Show All

  • Visual C# Validating a Form opened with ShowDialog()

    Hi, I’m using a Form in the Dialog mode “frmIP.ShowDialog()” & I’m trying to validate the input so as not to be able to click OK button unless there is a string in one of the text boxes. (it would reset the focus back to the text box & cancel the click event) I have using the Validating event of the textbox I want to validate. Although this works when I move focus to another text box, the buttons do not trigger the Validating event when I move to them. The buttons & Form are both set to ‘Causes Validation = true’; As a test, I tried a Message box but this simply gets called then the dialog box closes. How can I validate a textbox which is on a form opened with the ShowDialog() method. Any ideas would be ...Show All

  • Visual Basic Please suggest me a MS.IT level project to undertake in my college (inhouse project)

    Please suggest / list me the project definitions that you guys can think about that i can pursue as my inhouse project in my university. Hi, Are you after a project idea If so try doing a version of Tetris that combines numbered blocks 1 to 9 within shapes so that the user has to create a line with different numbers in it as per Sudoku rules for the block of lines to disappear. The program should not allow a "4" block on top of another "4" block with the same 3 x 3 area either - as per Sudoku rules or in the same horizontal or vertical line even, ( you may want to make these options in the game ). Should keep you busy. Regards, S_DS ...Show All

  • Windows Forms Signing Project Problems

    OK, I have created a key file that I use to sign my project before building it with ClickOnce. So far this has been working fine for me. I have been able to publish new versions of my software and copies in the field will update when I upload the new version. However, recently I formatted my PC and rebuilt it. I reinstalled Visual Studio 8 and then opened my project. At which point I was presented with an Import Key File dialog box asking me for the password for my key file I use to sign the project. I assume it is doing this as the key file is not registered on my PC since I formatted it. This isn't a problem as I just enter the password I used and hit OK. My project now loads. Now when I click to publish my project, I am presented ...Show All

  • Visual Studio 2008 (Pre-release) How to expose a Webservice at two addresses: one with http, the other with https?

    How can I expose a Webservice at two addresses: one with http, the other with https I tried the following, but unfortunately I can only access the first service: < xml version="1.0" encoding="utf-8" > <configuration> <system.serviceModel> <services> <service name="Webservice1" behaviorConfiguration="Behavior1"> <host> <baseAddresses> <add baseAddress=" https://myhost/Webservice"/ > </baseAddresses> </host> <endpoint contract="IWebservice" binding="basicHttpBinding" bindingConfiguration="Binding1" /> </service> <service name=&qu ...Show All

  • .NET Development Usage of FxCop 1.35 for ASP.NET 2.0 Web site

    Hi all, Can any body help me out in doing Code-design/review through FxCop 1.35 for a ASP.NET 2.0 website as i am not able to do them for my BAL(business access layer) classes and DAL classes coz. it does not create a .NET dll so that i can add them . Regards, sreedhar Thanks Rodrigo, Let me check my installation in detail Its VS2005 Professional Edition. Let me check something has to be enabled or not.. Regards ...Show All

  • Visual Studio September CTP Error with Crystal Reports Reference

    Hi, I'm getting an error when trying to build a CHM using the Sandcastle September CTP on an assembly with a reference to Crystal Reports. I've built CHMs successfully for several other assemblies, but this one gets the following error when running MRefBuilder: Error: Unresolved assembly reference: CrystalDecisions.Windows.Forms (CrystalDecisions.Windows.Forms, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304) Crystal is (unfortunately) installed on this machine. Does anybody know how I might be able to resolve this Edit: --------------------------------------------------------------------------- I should have searched first! I see that Sandcastle can't reference assemblies in the GAC  Is this someth ...Show All

  • SQL Server XML iteration

    I know this problem probably comes up alot, but Im looking for a way to iterate through certain nodes of a given XML variable. Im trying to write a stored procedure that will insert a large number of stock items, these stock items are represented by XML, there is alot of data that associated to a stock item so I need to check many many dependancies before inserting the stock item. So I need to loop through each Stock element, then loop through that particular elements child nodes etc... doing SQL validation, etc... almost like cursors for XML. Can this be done or can someone suggest a better solution Cheers, Mark I think ill need you help again, I have got what you have done working with my data, thanks f ...Show All

  • Visual Studio 2008 (Pre-release) Populating ComboBox IFeedManager(RSS) Help Please..Thxs

    I need some help populating a ComboBox with RSS Feeds i have in IE7,I would like the ComboBox to List the the Feeds RootFolder..Than i can select that particular feed and have the RSS (feed) show up in my ListBox..That way i can change out the Feeds just by using the ComboBox..This is what i have so Far:: In IE7 i have a few Feeds ( FilePlanet,SplinterCell PodCast & MSDN:Visual C#) I want these to show up in the ComboBox,than when i select one those feeds will show up in the ListBox... private IFeedsManager feedManager = new FeedsManagerClass (); private void AddIE7FeedsClick( object sender, RoutedEventArgs e) { IFeedFolder feedrootFolder; IFeedsEnum colSubFolder; IFeedsEnum colFeeds; feedro ...Show All

  • .NET Development File/Directory path validation

    Hi folks, I'm looking for a way to validate a string whether it is a valid file path and/or directory path. The System.IO.Path class contains some helpful methods but not a solution. I am not looking to find out if the file or directory exists or can be created. I want to know if it is a valid path expression. Relative paths are also important to be distinguished. Is there such a method available I have looked and could not find a good solution yet. Is there a solution in .NET 3.0 Thanks in advance, Remus .NET 3.0 has nothing changed but only add ons like Indigo/Avalon/WPF etc... the main core engine is still .NET 2.0 and no changes made to that. I don't beleive there is a method avail ...Show All

  • Visual Basic How to open an Excel file from ASP.NET

    I’m using the following code to fill a table with some values from an Excel file. Everything is ok if the Excel file is on my server ( Data Source=" & Server.MapPath("\") & "/test.xls; ), but I need to search it on another server. Here is the error message returned: The Microsoft Jet database engine could not find the object '\\Server2\Shared$\XXX\test.xls'. Make sure the object exists and that you spell its name and the path name correctly. Thanks Dim conStr As String = "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=\\Server\Shared$\XXX\test.xls;" & _ "Extended Properties=""Excel 8.0;HDR=No;IMEX=1""" Dim connSQL As New OleDbConnection(conStr) Dim cmd ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Is XNA the tool for serious game developers.

    I'm trying to make the decision if our game development team should use XNA as the technology solution. The question is, if XNA is capabale, or is intended to be, a commercial game development tool set for serious game developers. Reviewing the majority of the posts here (XNA vs. C++/DirectX) It is a very powerful and fast development environment, however at the moment its range is limited to the Windows and Xbox 360, meaning that (at the moment ) you cannot develop as easily as you can with C++/DirectX for alternative next-gen platforms (Macintosh (hah, as if), Wii or PS3). I, however, haven't seen many remarks on the possibility to opening this to other platforms. ...Show All

  • Visual Studio 2008 (Pre-release) Can i use ObjectDataProvider to set value of Property like source object does?

    I defined a Person class. Person has a Name property I want to set the value of Name property again after it' created.... I can archieve this by using source object: <local:Person x:Key="person1" Name="bill"/> But i don't know to do with ObjectDataProvider... I can't use the "Name=bill" like source object because the ObjectDataProvider wrap the object..... I want to do it without code or MethodName the Person class I defined: public class Person { string name; public string Name { get { return this.name; } set { this.name = value; } } public Person(string name) { this.name = name; } pub ...Show All

  • Visual Basic Registry

    I need to do the following in the registry - Check to see if a given key exists - Create a new key - Overwirte an existing key - Delete a key can anybody recomend somewhere to find how to do this, I did a google search, best i came up with from the articles i saw was to include this: Imports Microsoft.Win32 MSDN has a wealth of information - I find it extremely useful myself. If people actually looked at the help and MSDN they would find many answers to common questions really easily - with loads of small sample code to get you going. ...Show All

©2008 Software Development Network