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

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

hazz

Member List

ivanchain
Suresh_Bangalore
VSFW3
DiamondDavo
Sobia
A.Russell
Andrew Lytchev
Jamie Clayton
thomasabcd
gbshahaq
FRENFR
Aun
Jayvardhan
Vitalijus
kuria
anu_ooo
Leon Bouquiet
raj.ramesh
Linusguy
Tim Dallmann
Only Title

hazz's Q&A profile

  • .NET Development Problem Sending Email

    Hello Everyone, I a having problems sending an email.  I have microsoft xp home edition and I am working on visual studio 2003 .net.  Also, (and I think it is because I have the home edition) I do not have the IIS component.  When I go to the Add/Remove WIndows components, IIS is not even there. I opened an account with google to be able to use the google smtp. This is my code: ------------------------------------ void sendEmail() {     try     {         try         {             MailMessage message = new MailMessage();   & ...Show All

  • .NET Development how can i register multiple objects in a single .net remoting configuration file

    I have a class library i want each and every class to be a remote object in the remoting server.how can i put each and every object in the remoting configuration file. I have use this code so could you please tell how to configure this to multiple objects and how to configure client app config file to capture the objects TcpChannel channel = new TcpChannel (8888); ChannelServices .RegisterChannel(channel, true ); RemotingConfiguration .RegisterWellKnownServiceType( typeof (WMSDataLayer. clsLine ), "HelloWorld" , WellKnownObjectMode .Singleton); //ChannelServices.UnregisterChannel(channel); //channel = new TcpChannel(8889); //ChannelServices.RegisterChannel(channel, true); //RemotingCon ...Show All

  • Visual Studio changing the icon in the Solution Explorer without creating an O/S file association

    Can anyone give directions on setting the icon for the dsl file in the solution explorer I want to do this without creating an operating system file association. I realise that one needs to implement IVsHierarchy and override GetProperty, however I cant file how or where IVsHierarchy ties into the generated DSL code. Any pointers Thanks again guys Jing, with the June CTP, the icon selection on the "File Extension" tab indeed sets the icon for the language, but the only effect is to associate the icon to the language on the dialog that shows when a user selects "add item" under the experimental hive. The then created designer file does not show such icon in the solution explorer ...Show All

  • SQL Server Show Data

    Hi all I have a data base for some equipment on a few windows application forms written in vb 2005 express. eg Form1 for tools , form2 for nuts &bolts ect. I wondered if it is it possible to set data base to open when the form loads and shows the data of that particular piece of equipment instead of always opening on equipment id number 1 for instance . For example when form3 loads ,equipment id is set to 3. Thanks Rob Hi Rob, Yes, this is possible. You would need to modify the code in your application to switch to a specific record when you open it. You will likely get a better answer by posting this question to one of the VB forums since this is really a VB question about how to change the record showing in form. ...Show All

  • SQL Server Stored Procedure Problem

    hy i have a problem using a stored procedure to fill a resultset first i fill 2 tables within the stored procedure both having an employeeID. one of them contains information about Book Hours (the amount of time they worked) grouped by employee, year,month and Productive(boolean) the other contains a headcount value(indicates wether he was working for a ful month) grouped by employee,year and Month. 1st table lookes like Employee year month productive Booked Hours EmployeeID 1, 2000, 1, Yes, 103 EmployeeID 1, 2000, 1, No, 54 EmployeeID 1, 2000, 2, Yes, 99 EmployeeID 1, 2000, 2, No, 12 ... EmployeeID 1, 2000, 12, Yes, 72 EmployeeID 1, 2000, 12, No, 15 EmployeeID 2, ...Show All

  • Visual C++ Disassembling

    Hi all, I know how to do this: foo.cpp=====> foo.asm I want to do: foo.asm=====>foo.exe and: foo.exe======>foo.asm Can I do these by VS2005Pro IDE or its bundled softwares Or I need to get another software Ayman Shoukry - MSFT wrote: You can not do that directly. You will probably need to do manual modifications. Thanks, Ayman Shoukry VC++ Team Adding 0x to numbers and delete ending 'h's What else I don't know why these tools with same version from same company produce different formats. ...Show All

  • SQL Server Does SQL Server 2005 Express support Web/Internet Replication to other SQL Server Express Clients?

    HI Q1: Does Sql Server 2005 Express support Web/Internet to other SQL Server 2005 Express Clients or does it have to Synch across the internet to a fully installed setup SQL Server 2005 with IIS Q2: Does SQL Server 2005 Express support Direct Replication between other SQL Server 2005 Express clients Regards SQL Server 2005 Express Edition supports being a replication subscriber only. See http://msdn2.microsoft.com/en-us/library/ms165700.aspx The publisher and distributor must be higher SKUs of SQL Server 2005. i.e. Enterprise, Standard, Workgroup. As for synching via IIS over the internet with merge replication, this is supported by the SQL Server 2005 Express client. Hope this helps, ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Where is the download?

    It is 12:48 pm here (GMT + 1)... in Nuku'alofa (GMT + 13) it is tomorrow... So where the hell is my download link :-D It's just about 12:30 AM, my guess is you'll still have to wait several more hours, probably at least 8 and a half since the workday starts for most people in the US around 9 AM. Even then I don't expect to see it until later in the afternoon Pacific time. ...Show All

  • Software Development for Windows Vista Dependency Properties in XOML files

    Hiya all How do I write the dependency property below in xaml in the xoml file for a workflow Thanks protected static DependencyProperty CurrentMortgageFileProperty = System.Workflow.ComponentModel. DependencyProperty .Register( "CurrentMortgageFile" , typeof ( MortgageFile ), typeof ( LsmBaseActivity )); [ Description ( "The current Mortgage file on which the workflow is acting." )] [ Category ( "RMC" )] [ Browsable ( false )] [ DesignerSerializationVisibility ( DesignerSerializationVisibility .Visible)] protected MortgageFile CurrentMortgageFile { get { return (( MortgageFile )( base .GetValue( LsmBaseActivity .CurrentMortgageFileProperty))); } set { base .SetValue( LsmBaseActivit ...Show All

  • SQL Server Problem with sum function

    hi all i have a problem. i have an amount field. if its value is greater than 0 than i m putting it into db column. else cr field. its working perfectly. but now i want to sum these two fields. sum of db field and sum of cr field. because in databse its a single field than how can i sum this field separately. thanks Hi, Please correct me if I am wrong, I think you could add a “calculated field” for totaling db and cr fields. Thanks, JDee ...Show All

  • .NET Development VS 2005 express: ".NET Framework Data Provider for ODBC" does not show up in Choose/Change Data Source dialog :(

    Can anyone help me with this I desperately need that ODBC Connector in order to access an MS SQL 2000 Server. I am using VB Express 2005 Beta 2, and as I mentioned in the topic, that ODBC Data Provider won't show up in the Dialog, the only choice I have there is ".NET Framework Data Provider for SQL Server", and there is no other Data Provider available. Any way to fix that thanks in advance! Hi, did you try to to this by code, like here using System.Data; using System.Data.OleDb; The System.Data.OleDb namespace contains the components necessary to implement the OLE DB data provider. Now, double click on the button control and add this code into the buttons click event: private void button1_Click(ob ...Show All

  • SQL Server SQL Server is writen in which programming language

    Any one know the SQLServer is written in which programming language C++ or C I know the rival DB Oracle is written in C programming language. Thanks. RKK Its written in SQL Seriously though, the UI may be C++ or something, however everything you do in the EM / MMC just generates SQL script that modifies the DB. The UI is great when your starting out, although to be honest I prefer coding absolutely everything in query analyzer just to get my skills up. hth Pace ...Show All

  • SQL Server Service Pack 1 -- account information could not be verified

    When installing Svcpack 1 ontop of my 9.00.1399.06 RTM Developer Edition I get the following error everytime: --------------------------- Invalid Login Information --------------------------- Your account information could not be verified for one or more instances. Ensure that you can connect to all the selected instances using the account information provided. To proceed further deselect the instances to which connectivity cannot be established. --------------------------- OK   --------------------------- I have followed all possible suggestions on the following post http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=358003&SiteID=1 but nothing works.  I'm running as the local admin on t ...Show All

  • Windows Forms tutorial with datagridview

    Hi, I have seach but can't find a tutorial, which shall do the following: I have a datagridview, which have 5 colomns - the first 4 I gets from a database. The 5. have I created as a unbound text. In each row I will use the 5. column to make a calculation on column 1 and 4 where I shall say: column4 = column1 * column4 In a textbox below the datagridview, I then will have that adds all the data in column5 Example: Column1.......Column2.....Column3......Column4......Column5 QTY...........Some text...Some text....Rate.........QTY*Rate 5.............aaa.........aaaa.........100..........500,00 2.............bbb.........bbbb.........150..........300,00 Textbox which contains the totally of Column5 = 800,00 Can anybod ...Show All

  • SQL Server ODBC driver for windows 2003 64bit

    Hi All, I have installed windows 2003 R2 64bit on one of the system, but my devlopment team pointed out that there is no odbc driver available. I check it for odbc driver on OS cd but i do not found any relevant files/packages, can any one tell me from where I can download the ODBC driver for windows 2003 64bit OS. Thanks & Regards Varian I have the same problem. My company works with the windows server 2003 R2 64 bits and we can't use an Access DB in our Site because this version doesn't have the drivers for accessing Access Databases. Can someone help Thanks ...Show All

©2008 Software Development Network