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

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

hazz

Member List

Tao Wang CSI
GRK
Karl Seguin - MVP
AndrejJ
arashikage
MrJP
drinkwater
Rahul Singla
pd_tch
Brian_Tucker
Bucketo
PureVision
Salvador Rocha
daydreamsy2k
xtrout
Grahame Edwards
A911Pro
Vikas H
Wee Bubba
SQLScott
Only Title

hazz's Q&A profile

  • Visual Studio Subversion SVN with Visual Studio 2005

    Anyone know how I can use Subversion SVN source control in combination with VS .NET 2005 to have source control for a website served on IIS with Frontpage extension 2002 Thanks in advance guys! According to their website, that one (Subway) hasn't been tested on anything other than VS.NET 2002. I remember reading somewhere that some IDE APIs had changed, and that it probably wouldn't work I'll be testing Subversion's Ankh soon... ...Show All

  • Visual Basic Developing Chart Of Accounts - How to use trees & tree nodes

    Hello i m making an accounting application, i m developing a form that loads the company's COA, i want to show the copp's COA in tree my question is how does i make a child node in the tree how do i keep track where is the root node, where is the 1st level 2d level node etc i have a sample in vb 6 which is a piece of cake but haven't got one single in vb.net i m using vb.net 2003, please help also tell how do we sort a data table in vb.net is there some1 who has experience of developing an accounting business application, he/she must have gone through the Chart of accounts module which deserves a tree view, what i simply wanna do is to master tree vew control, populate it through database records, analyze w ...Show All

  • Visual Studio 2008 (Pre-release) svcutil.exe datacontract only is not generating minOccus='1'

    Call "C:\Program Files\Microsoft SDKs\Windows\v1.0\Bin\svcutil.exe" /dconly /out:..\..\DataContractXSD.cs /t:code "$(ProjectDir)Data.xsd" Data.xsd file has < xsd:complexType name =" AccessInfo "> < xsd:sequence > < xsd:element name =" User " type =" xsd:string " minOccurs =" 1 " maxOccurs =" 1 "/> < xsd:element name =" Password " type =" xsd:string " minOccurs =" 1 " maxOccurs =" 1 "/> < xsd:element name =" ApplicationID " type =" xsd:string " minOccurs =" 1 " maxOccurs =" 1 "/> < xsd:element name =" ClientIPAddress &quo ...Show All

  • Visual Studio Express Editions Handling Multiple Events

    Hi I am trying to handle text change events for multiple text boxes within the one subroutine. I have a handle for each text box within the form, within the subroutine. I then want to identify what text box the event came from so that I can then process this change. Does anyone know a way to do this. All help would be appreciated. Here is an example of handling 2 text boxes within the form: Private Sub textBoxes_TextChanged( ByVal sender As System.Object, _ ByVal e As System.EventArgs) _ Handles description.TextChanged, _ accountNumber.TextChanged) ' I want to determne in here what Text Box fired the Event End Su ...Show All

  • Visual Studio 2008 (Pre-release) Location of Stand Alone WPF Apps

    where is it located after installation cant find it under Program Files folder :) These applications are intentionally isolated from each other and the install path under AppData is obfuscated. Aside from curiosity, is there a reason you want to the install location ...Show All

  • Visual Studio Express Editions Dataset Not Writing to Database

    Ive set up a small database project. I created it using the wizards, and used the dragging and dropping of the table in the data sources view to get the fields and buttons on to the form. That is all I have done, no custom code or anything. But it doesnt work. The data is written to the dataset as it is all stored while the program is running in VB. However if you close it the data is not written to the database (I did press the save button). I dont understand why this doesnt work as I have touched it myself. Any ideas on how to fix this problem Thanks in advance Code is beneath Public Class Form1 Private Sub Table1BindingNavigatorSaveItem_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Han ...Show All

  • Visual Studio 2008 (Pre-release) Panel that can repeat items

    Hi, I'm trying to create a custom panel or control that can repeat items (horizontally and/or vertically). I'm thinking of deriving my control from itemscontrol class but don't know how to make it repeat items i.e. when you hit the next button when you are at the bottom of the list, it should display the first item again. Any ideas Thanks. In addition to the problems listed by Ifeanyi, there's also the issue of the "infinite scrollbar." If the list never ends, how big should the scrollbar's thumb be How would you respond to a scroll event How many items should be scrolled when the list is infinite ...Show All

  • Visual Studio 2008 (Pre-release) Multiple Service Hosts for single MSMQ/clustered MSMQ

    How can I have service hosts, running on different servers, and bound to netMsmqBinding all pointing to the same MSMQ I need this to a) have a service host use a clustered MSMQ, and b) support scale-out by simply adding additional servers. When I try to set the service endpoint address to point to a Queue that is not hosted on the same server as the ServiceHost, no errors are reported but no requests are processed. Hope some can help. Thanks Thanks for your response. Unfortunately, Vista is not an option (its a desktop OS, and its late). I'm assuming that remote transaction read is a feature of MSMQ in Vista/Longhorn Server, and not directly related to WCF ...Show All

  • .NET Development Could not find file Microsoft.Windows.CommonLanguageRuntime....

    Error 3 Could not find file 'Microsoft.Windows.CommonLanguageRuntime, Version=2.0.50727.0'. MyProject why is this error showing up i cannot find any help on this issue anywhere, not even in MSDN. Do you have any EXE -> EXE project references in your solution (i.e. a WinForms application referencing another WinForms application) ...Show All

  • Visual Studio Team System Post-SP1 Install Issues

    Hello, I completed installation of Team Server SP1 yesterday on a single-server deployment using the Workgroup edition (5 user limit). I installed the prerequisite from KB919156 and did not run into any additional installation problems, the process completed successfully. At the moment, everything appears to be running properly. I can connect to the Team Server, download projects, etc. However, I rebooted after completing the installation, and on startup I am seeing multiple error messages in the application log. The exception message for the errors shows as: Cannot open database "TfsIntegration" requested by the login. The login failed. Login failed for user 'OSCAR\TFSSERVICE'. (type SqlException) The errors all se ...Show All

  • Visual Studio Express Editions reflection - createInstance on an object which doesn't have parameterless constructor.

    Hi, I am using reflection to all the class in a dll and their methods. While invoking some of the methods, my call to Activator.CreatorInstance fails since the class didn't have a parameterless constructor. Is it possible to find the constructors (with the parameters) and then create the object with those parameters Ignatius From the sounds of it you’ve already got an instance of the Type... if that is the case you can simply call GetConstructors() on that type to receive a list of the public constructors. After you’ve got that list you can then call GetParameters() on each one to get a list of their respective parameters so that you can more easily determine which one you want to ...Show All

  • Community Chat KnowledgeNavigator

      KnowledgeNavigator is a Dot Net based knowledge abstraction tool using an Acess database. It is a set of organized categories and documents that you, the user define. The categories and documents created by you and are displayed as if they are in your computer file system except they are not. These documents and categories are contained in one central and transportable database, a database that you can send to friends and share with them or a database that contains all the documentation for a project, or better a set of in-depth topic on wine or even recipes. You can create Categories and subcategories of your own chosing and ogranization. New databases can be created and selected. KnowledgeNavigator will ...Show All

  • Windows Live Developer Forums Out of Memory

    Hi ppl, I have a web browser in a .NET C# application that calls a Virtual Earth Map. When i minimize the application, it show a message box with an error : "Out of Memory at Line 2". However, i delete or i change the line 2 of html file and the error is the same. Is it any think that i should do to solve this problem Good Year buster JeffK_ wrote: dude, you still got a major problem with your jabbascript... Agreed, you just removed the error message without removing the error. Oh and that error message does not necessarily mean error in line 2 of the HTML file. Again I need to see your HTML page to figure out whats going on ...Show All

  • Windows Forms Locating a program's installation folder

    I have an application that will be used by other applications installed on the client machine if the other applications see that my application is installed. Currently, during installation, my application places a value in the registry that points to the location of my application's executable. When another application wishes to run my application, it can look for this value to locate the executable. This method is all fine and good for now, but we're trying to minimize how much our applications write to the registry. I'm hoping to find a method by which another application could discover the installation folder of my application, perhaps through entries created by Windows Installer during the install process. Unfortunately, I have been un ...Show All

  • Visual Studio take too much time to add an item in the class designer

    Hello, Thanks for the reponse. I have another question, why it takes so much time when i add an item in the class designer. thanks boyi Hi, The size of the project is 3.12 MB. I use the language VB. It is not running on Windows Vista with Aero. Thank you ...Show All

©2008 Software Development Network