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

Software Development Network >> Leo Mathew's Q&A profile

Leo Mathew

Member List

tronn
MSP.Saami
sql server2000
kangalert
mkamoski
Madhur Bhardwaj
Christina Tabet
mamatham
kgs1951
Qdshi
MatthewWaring
KidVB
prashant_katwate
webbda
Samoyed
Fiwel
Captaintrips
webedc
Phil Winstanley ASP.NET MVP
rwgreene
Only Title

Leo Mathew's Q&A profile

  • Visual Basic Tabbed Web Browsing

    Hi everyone, I'm trying to make a project of a web browser, that's going to have tabbed browsing, only I have no idea how!I've done everything other than the tabbing.Please help! The basis would be that you would need to create at runtime a new tab with a webbrowser control on that tab. Here's a small snippet of code which will create a tab at runtime with a webbrowser control and set the default page to ms.com This should show you the general idea. Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim x As New TabPage With x Dim x1 As New WebBrowser x1.Dock = DockStyle.Fill x1.Navigate(New Uri(" http://www.m ...Show All

  • .NET Development get data from access and save it into a new excel file using vb 2005

    Can some1 give me a small sample of how to do this Ok nvm i finally got it the answer, i had to use excel 8 instead of 11. The code is workable ...Show All

  • Visual Studio 2008 (Pre-release) ElementName does not work on derived UserControls?

    I used the sample http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=96651&SiteID=1 of Beatriz, where a slider changes the LayoutTransform of a TreeView. The only thing i changed was that i use "UserTreeView" instead of TreeView. Whereas UserTreeView ist derived from TreeView. Here is the exception: Cannot find source for binding with reference 'ElementName=slider'. BindingExpression:Path='Value'; DataItem=''null''; target element is 'UserTreeView (Name='tree')'; target property is 'LayoutTransform' (type 'Transform'); Is this a bug Or is anything wrong. Beatriz, I wish I had found this thread earlier. Can you confirm that this is the same bug that I am running ...Show All

  • Windows Live Developer Forums Live ID on Windows Register

    Hi All, It's possible know where the login and password of Live ID used also in the Live Messenger are saved in the Windows Registry and what type of encryption is used Thanks. Maybe the login and password are saved at this address: HKEY_CURRENT_USER\Software\Microsoft\IdentityCRL\UserExtendedProperties\ but in wich type of encryption are saved ...Show All

  • Visual C# HOW TO Convert DataReader To DataSet

    in my table have 2 column (table_ID, table_Status) i use sqlDataReader to read all data in this table but i don't know how to convert it into dataset can anyone help me thank you! i have another question if i have 2 tables like below: tblFood > Food_ID, Food_Name, Food_Statis tblFoodPrice > Food_ID, Food_Size, Food_Price can i add 2 tables to my dataset and join that 2 table to show in data grid like below food_ID, Food_Name, Food_Size, Food_Price, Food_Status thank you for your help : ) ...Show All

  • Software Development for Windows Vista Problems incorporating WorkflowCommitWorkBatchService

    Hi I'm currently building a state machine workflow with the OOB web service activities.  I'm using the OOB persistence service and i'm also saving information into a custom data model.  To ensure the consistency between the workflow state and the custom data model I am following the work batch approach.  This works fine however I have the following problem with this arrangement. The problem is that I want to let the client using the web service know if there were any problems commiting the work, ie: I want to give them back a soap exception indicating any failure.  Is this possible using these standard activities and services Just as an example of the problem, I found this problem when I moved my source to a ne ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How to load and display the 3D Model?

    I know this is a noobie question to you guy, but I was using console and basic application programs for a while and I really want to know how to start using the XNA software for gaming development. I have some experience with programming after using DarkBASIC Professional, so I understand how languages may work, but C# is one of the powerful program I haven't learn. I tried to find a book online, but I am broke and I am using express verison for programming tools. I really need your help to find a way to load and display the object then that will be a push start for me. After I learn how to do these basic, I could control the rest. If my message is not understandable to you people, it must be my language skill to my earing disability. I ...Show All

  • SQL Server Header on Matrix Rows

    Is there any way to add a header to a Matrix row in RS SP2 Much like a header for fields in a table. I have multiple row groups in my matrix and want to label them so as to avoid confusion. However, I haven't had much luck in finding a way to do this. What I have looks like this: Tasks, Users, Billing 01 Jan 2005 Time External Billing (£) 1 to 1 2       SubTotal 5.25 270.00 6.2       SubTotal 1.50 0.00 10 South Way 1       SubTotal 3.50 245.00 106 Wetherby Road (Ian Mcleod) CS0344       SubTotal 0.50 17.50 I want to add a header to columns 1 and 2. Thanks, Corwin ...Show All

  • .NET Development deleting element using xpath

    Howdy, I'm using vb.net with XML and am having a lot of trouble deleting a whole element in an XML file using vb. Here's an example of my schema: <stack> <property name="id">1</property> <property name="name">Test Name</property> <property name="subject">Test Subject</property> <card> <property name="name">Card Name`</property> <property name="front">Card Front</property> <property name="back">Card Bacak</property> </card> </stack> Say i wanted to delete the card node with the card property name of Card Name If anyone has an example of how to do this, or even an msdn arti ...Show All

  • Visual Studio Setting a stored procedure as a datasource

    Hi, I am using VS2003 C# winforms. I want to use a Stored procedure as the datasource for a report. When i expand the nodes of the Datasource I've set in the database wizard, it only shows the tables & views of the data source but not the stored procedures. I am following an MSDN example (below, example on Visual report), but i cannot pick the SP as it is not offered in the tree. http://msdn.microsoft.com/vstudio/team/crystalreports/gettingstarted/default.aspx Can this be done using the Database wizard as the example suggests or must it be done off an XML datasource or some other way I'm a little desperate so hope someone has had experiece with this. MSDN newsgroup had no answers... Thanks very much for any help in a ...Show All

  • Visual Basic Maximize my screen

    On my small application that I am writing, I have turned the Maximize & Minimize buttons off and was wondering how I could set the Main Form to fit the entire screen whenever the Main_Load occurs. Can anyone help me here Thanks, QWERTYtech I've done that but I want it to be able to change depending on what Resolution the end user has their screen set to. Is there any way to do this Thanks, QWERTYtech ...Show All

  • Windows Forms problem downloading winfx as prerequisite

    Hello everyone, We are developing a winform proyect with indigo (june 2006 version), when we try to publish it, with winfx as prerequisite, it fails with this error: " 'PublicKey' or 'Hash' attribute specified for file 'WinFX\Dotnetfx3.exe' in item 'Win FX'. " Do you know how to solve this problem Thanks in advance Pablo. You have to download the WinFX redistributables from http://www.microsoft.com/downloads/details.aspx FamilyID=8d09697e-4868-4d8d-a4cf-9b82a2ae542d&DisplayLang=en first and copy them to following location: VS8InstallLocation\SDK\v2.0\BootStrapper\Packages\WinFX (e.g. C:\Programme\Microsoft Visual Studio 8\SDK\v2.0\BootStrapper\Packages\WinFX) ...Show All

  • .NET Development migration from VS2003 to VS2005 - WSDL - "anyType" Error

    I have done a migration of a solution in VS2003 to VS2005. The solution is a server from a client-server applications. Solution contains some web-services, which runs ok in VS2003. Solution must be used in ASP.NET 2.0 on a 64-bit machine. The migration and deployment went well, but there are some errors. The client application (on NET 1.1 and 32-bit machine), is connecting ok to the server application (.NET 2.0 and 64-bit machine), but for some functionallities, an error raised only on client side: System.InvalidOperationException: There is an error in XML document (1, 1553). ---> System.Data.DataException: Undefined data type: 'anyType'. at System.Data.XSDSchema.FindNameType(String name) at System.Data.XSDSchema.HandleElementC ...Show All

  • Visual Studio Team System Help with a query - all WI that have been built.

    Hi! The problem: How can you tell which Work Items (for example a bug) have been integrated into a build As a tester you would like to create a query that gives you a list of all Work Items with these statements: Type = Bug State= Resolved Integrated in build: <not blank> I have not been able to create a query like this... any ideas I simply want a list of all Work Items that have a value in the "Integrated in build". So.... the query would be: Integrated into build != <blank> But that query does not work as expected. ...Show All

  • Visual C# How can I dock my form on the top-right side of the desktop?

    How can I dock my form on the top-right side of the desktop On startup, my form needs to be docked on one side of the desktop. How can I do this Thanks, You can write some thing like this int left = Screen .GetWorkingArea( this ).Width - this .Width; this . Location = new Point ( left ,0); ...Show All

©2008 Software Development Network