Software Development Network Logo
  • SQL Server
  • Windows Vista
  • Smart Device
  • Windows Forms
  • Game Technologies
  • Visual Studio
  • Visual FoxPro
  • Visual J#
  • VS Express Editions
  • Microsoft ISV
  • Visual Basic
  • Windows Live
  • Visual C++
  • VS Team System
  • .NET Development

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

Madhat3rr

Member List

godfearer
Karthik G Kashyap
El Bruno
raoprasad
TokenWorks
MagnaX
Marcelo Uemura
Ulf Lagerb
chris22ka
ShaTari
Aquilo
obiwanjacobi
Setser
RussellF
conqueror
MartinMSJ
sperlis
taekdar
David McReynolds
Chip 1.5 at 11.25
Only Title

Madhat3rr's Q&A profile

  • Visual Basic Interacting with another aapplication

    Hey, I have a project in which i have to interact with another application written in vb. Now it has some combo boxes which i have to fill and a button i have to click. I also have the code for this application and the modules and the form is accessible.But the problem is i want to interact with this application at run time . Any suggestion as to how i may do this An early response would be appreciated. Thanks This forum is for .NET only ...Show All

  • .NET Development >NET PaypalIpn

    Hi i am trying to develop a page that use's paypal's IPN my code is the following: Loads of variables declared as strings     Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load         Try             'Loads of variables picking params using request.params      &nbs ...Show All

  • Windows Forms Returning a Collection Class

    Greetings, I have created a custom collection class that I would like to return from a function (i.e. return customcollection;).  However, a runtime error is generated when I call the function that's suppose to return the custom collection class.   ...Show All

  • Visual Studio Express Editions Buttons and Data Sheets

    This project that I am trying to create was fairly easy for me to do in excel, however not knowing vb well I am having a hell of a time doing it in vb but this is a very fun and learning opportunity. Now on to the next portion of my project. I want to create 2 buttons: One button that will create a column that will combine with column3-5 and be added to the equation of Column 6 The other will create a column that will be added to other columns ...Show All

  • Visual Studio Team System Manual Tests with Code Coverage for all assemblies

    Heya. I'm not sure I'm doing this the right way so I'll have to ask. I'm using Unit Tests together with Manual Tests and I'd like to view the Code Coverage information on these tests combined. The Unit Tests runs alright with Code Coverage but I'm not sure how I should run the Manual Tests to gather Code Coverage. Today, I just double-click the .exe in the bin/Debug folder but that seems to just collect code coverage information on the .exe, not ...Show All

  • SQL Server Wishlist: MOST WANTED Tasks, Sources, Transformations, and Destinations?

    Until there's an Integration Services 2.0, what custom components would you most like to see examples of The documentation team is starting work on the 2nd Web refresh of Books Online and SQL Server samples, anticipated for release around April, and may be able to incorporate some requests as samples or BOL topics. I scanned Kirk's "Requests" thread and, although many requests are for tweaks to existing SSIS widgets, I noted the following ...Show All

  • Windows Forms Where I can get Terrarium sources?

    Where I can get Terrarium sources Patience my friend. I'm aware that Mitch has upgraded the external servers to support the latest Terrarium Server. The Terrarium source release will include a new server and a new client. If you check& ...Show All

  • SQL Server SQL Server 2005 stdevp function

    I am currently unable to get the stdevp function to work. The query is as follows: SELECT stdevp(Schedule_Weight) AS Expr1 FROM Order_Start_Steps_Weights WHERE (Schedule_Weight_Type = 1) When I try to execute the query (from either BIDS or SSMS) the query gets changed to: SELECT COUNT_BIG(Schedule_Weight) AS Expr1 FROM Order_Start_Steps_Weights WHERE (Schedule_Weight_Type = 1) I should mention that the stdev function ...Show All

  • Visual Studio Team System CollectionsShouldImplementGenericInterface should be a breaking change?

    FxCop raises a CollectionsShouldImplementGenericInterface violation for a simple collection class which inherits from the non-generic CollectionBase. As far as I can see the only sensible way to fix this is to derive from one of the generic collection classes (usually Collection<T>). This is surely a breaking change. Joe, Although it is a breaking change to modify the base of a class, it is not cons ...Show All

  • .NET Development Populate DataSet from CSV

    Hi there! I'm trying to populate a DataSet from a CSV-File. The CSV-File looks like: "Name";"Given name";"Department";"E-Mail";"Telephone" "Test";"Test";"Dep 1";" Test@Test.com";"+49  555 555 555" And my Code looks like this: string  strConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + System.IO.Path.GetDirectoryName(strFileName) +";" + "Extended Properties=\"Te ...Show All

  • Visual Studio 2008 (Pre-release) Read a System Table with DLinq

      How can one read a "sql" system table like sys.tables using DLinq I have try the following, but no luck - Get "Incorrect syntax near '.'."   string connection = "Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=AdventureWorks;Data Source=localhost" ; System.Data.DLinq. DataContext tDataContext = new System.Data.DLinq. DataContext ( connection ); string sql = "SELECT Name from sys.Tables" ...Show All

  • Visual Studio Tools for Office Keyboard event handling

    We are on VSTO Customizations for Word 2003. We binded the XML Schema to the word document. At some of the nodes we need to capture the keys entered by the user and based on that we need to do some action. For that we have written KeyHook events. The following link is the source of our reference http://msdn.microsoft.com/msdnmag/issues/02/10/CuttingEdge/ While using the code as such, whenever user presses a key the keyevent is ge ...Show All

  • Visual Studio Team System Workitem to Workitem Transition

    I want to customize my Agile Workitem Types so I can be able to do workitem to workitem transition in such a manner: I have a "Customer Inquiry" type with the following states: Open Closed What I want to be able to do is create the following transitions: <empty> ==> Open (New) Open ==> Closed (Answered to the Customer) Open ==> Closed (Bug Detected) ==> New Bug Workitem with the information pro ...Show All

  • .NET Development Naming convention for partial class filenames?

    I cannot find the naming conventions for the partial class filenames in the Guidelines for Names in Msdn2. For now, I am planning to use: Foo.cs for the "main" part of the Foo class (typically a hand written file that defines the inheritance if any). Foo.Bar.cs for the "Bar" part of Foo class (typically Bar = NameOfTheCodeGeneratingTool if there is no ambiguity). What would you suggest Joannes The guidelin ...Show All

  • .NET Development What is the problem in my code(SaveFileDialog or OpenFileDialog)when I call a call within a function?

    In a v c++ class(2003 version) whenever I use this statement,    SaveFileDialog* m_pFileSaveDialog = new SaveFileDialog(); firewall (or security agent) says The process is attempting to invoke a system function from a buffer. do you wish to allow this     How to fix it in code as I can not close the security agent.     This is only happening for SaveFileDialog and OpenFileDialog functions As per my underst ...Show All

©2008 Software Development Network

powered by phorum