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

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

rhaazy

Member List

jagdishsingh
Freqy
boraaki
CalvinEagles
Centrics Developer Prime
RosieG
startingVBNet
G_Mahajan
peiman1
Kishore Ramakrishnan
jonzim
Vince Cad
eric8910
Harpreet Bhatti
TDSdev
pythonpoole
muhsin ugur
Malain
Lord Chabelo
Sion380
Only Title

rhaazy's Q&A profile

  • .NET Development Best way to launch a .net application (with parameters) from another .net app.

    I'm trying to launch a windows installed .net application - often with parameters - for instance using file associations - from another .net application. The obvious way to do that is, once you have the path: Process.Start(path, parameters); Although this does launch the app, there are some problems: 1. The lauched app. uses another 'Settings' file than when launching from the start menu. For instance if I save the form's location and size in the settings, it's easy to see the diff. 2. When using 'Process.Start' the ApplicationDeployment .IsNetworkDeployed will always be false. So my question is: What is the best way to la ...Show All

  • SQL Server Best practice for handling XML schema hierarchies?

    I have a number of tables with columns of xml datatype.  Each of these columns are typed against a different XML schema collection.  However, each of the XML schema collections contain a hierarchy of schema definitions - and the schemas towards the top of the hierarchy are used by a number of different  XML schema collections.  I want to define the schemas in such a way that if I need to change a schema towards the top of the hierarchy, I only need to change it in one place. I understand that it is not possible to reference a schema in one collection from another - is my understanding correct (If I am wrong, then pleas ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. newbie starting with opengl

    ive just installed vc++ express 2005 and i want to begin learning opengl. what else do i need to do to be ready to start opengl tutorials on nehe.gamedev.net The people in this group generally use DirectX, if you would like to start with OpenGL you might want to check out www.gamedev.net for resources. On the site they have a good beginners forum as well as a forum specially for OpenGL . I have also put together a small post for OpenGL on my Blog . ...Show All

  • Visual Basic Text from a notepad

    when i click button1 i want it to read the text from a certain notepad and then put all the text from the notepad into a textbox, how thanks If you are operating that notepad, you can always do a control-A, Control-C to copy the contents to the clipboard - from there it is very easy to programmatically move code from the clipboard to your textbox. If My.Computer.Clipboard.GetText().length <> 0 then    Textbox1.text = My.Computer.Clipboard.GetText() else    beep    Textbox1.text = "The clipboard is empty" endif I hope this helps ...Show All

  • Windows Forms The need for the Framework

    I create my windows application. Does every computer I want to run it in need to have the framework installed You may be right about the datetime/currency/etc. localization issues, I'm not for sure.  But all dialog text, error messsages, documenation, etc. for sure come out of the different languaged versions.  I apologize for speaking above m ...Show All

  • Software Development for Windows Vista WorkflowSubscriptionService - what is it?

    Hi, I found an implemented SubscriptionService in DocumentReview sample. It seems cool. I'm guessing what is it, and I have some ideas, but I would prefer some official documantation. Unfortunately  I didnt found ANY, i'm interested in role of this class and eg. relation with persistence service. Can anybody help me Thanks. It's used to help with outbound/inbund message correlation. As an example of where we are using it: We have an activity that sends and receives email. Obviously to correlate the received emails as they arrive we need to know a couple of things: 1. Which workflow instance is it going to 2. Which receive act ...Show All

  • .NET Development What's wrong in this code for xml?

    The code and the dataset gets the values, but i can't get no xml input file, what's wrong protected void btnXMLIzvoz_Click(object sender, System.EventArgs e) { DataRow row; DataSet dataset = this.CreateDataSet(); foreach (GridViewRow gridviewrow in this.GridView1.Rows) { row = dataset.Tables["Uporabniki"].NewRow(); //row["ID"] = Convert.ToInt32(gridviewrow.Cells[0].Text); row["uporabnik"] = gridviewrow.Cells[1].Text; row["geslo"] = gridviewrow.Cells[2].Text; row["vloga"] = gridviewrow.Cells[3].Text; dataset.Tables[&quo ...Show All

  • Windows Forms "Help" button/utility

    Hi, I want to make a "Help" button in my application that opens up help documentation in the msdn format. I want it to have a side panel, with index, search, documentation etc. and the main panel with the actual documents. Is there some "help" document control that comes with .net which does it all for me and I only need to pro ...Show All

  • Visual C++ Command line builds and file changes

    Hello, we are using VS2005. This question pertains to VC++ and command like builds. I am trying to use vcbuild (or msbuild) to build from scripts a solution with about 40 projects. What I find is that after doing a full build (win32 and debug, for instance) if I change a header file for instance and run the vcbuild command again passing the solution file, it says that everything is up to date. If I do the same thing from the IDE, right click on the solution and do Build Solution it rebuilds exactly what it needs. Am I doing something wrong with the command line I would like it just to build what it needs, I don't want to use /rebuild to r ...Show All

  • Windows Forms Comples Databinding - ComboBox

    I am having trouble getting databinding to work with a ComboBox.  The problem is the translation doesn't take affect. The ValueMember (Foreign Key ID) shows up instead of the translated description (DisplayMember) when I bind to 'Text'. When I bind to 'SelectedValue', the proper entries are in the drop down list but nothing is in the text portion of the&nbs ...Show All

  • Visual Basic Tabbed Browsing in VB .Net

    Hi, I have a question regarding tabbed browsing. I am writing my own custom web browser in vb .net studio 2005. I can create, dynamically at runtime, additonal tabs on a tab control, which will - in each - have a dedicated webbrowser control. So what will happen is 5 search engines will be searched and the results be placed in seperate webbrowsers under 5 dynamically-created tabs. The user can then tab throw each set of results. The problem is, I cannot crack for the life of me the creation of the dynamic webbrowser controls in line with creating the tabs. I will need to send a URL to each webbrowser too, to show the resulting searc ...Show All

  • Visual Basic How to create an Ad-Blocker in VB.net using AxWebbrowser

    Hello: My problem is simple: I assume that the page-load time does not really depend on the HTML-code being transferred, but on the content (especially images). Now I want to know how I can create an mshtml.HTMLDocument from an URL It should not be a problem modifying its content. My idea was to do something like this: Dim webpage as mshtml.HTMLDocument = "http://www.something.org/index.html" Dim cleanpage as mshtml.HTMLDocument = Cleanads(webpage) 'I know how to create a function that removes elements from the webpage, 'and returns a 'clean' version of it MyAxWebbrowser.Document = cleanpage Any Ideas My biggest problem is creating an ...Show All

  • Visual Basic Adding menu's at runtime problem

    Hi, I need someone to put me in the right direction as I'm not sure how to do this, I want to add menuitems to my windows form dynamically withh their relevent event handlers. The text for each menu is read from an XML file and I don't know how many menuitems will be added at any given time as it depends on the users choice. I'm using the toolstripmenuitems and I'm not sure if they react differently to the normal menuitems. Can someone help me on how to do this. Does anyone know of a good tutorial. thanks Chris Hi, You can take a look at this article http://msdn2.microsoft.com/en-us ...Show All

  • .NET Development How to release a program?

    Hello world!, I have come to a point were I want to release a program to friends and other network computers though I am having a few troubles... I'am using Visual Studio .NET Enterprise Architect 2003, and program in most the languages though I've never released any programs due to had no real need till now. 1st. I compile the program as release, so I go to my release folder and sent it to another computer and it does not work. What files will have to go with the .exe 2nd. Once I work out the 1st question, I would like to put it in an installer so I can transpher as one file ect, though it will need the .NET framework in it as we ...Show All

  • .NET Development xsl in dotNet 2005

    The following Source code from an .aspx page worked fine under dotNet2003, but doesn't work under 2005. All <xsl: statements are marked as errors. Please help!! < xml version ="1.0" > < xsl : stylesheet version ="1.0" xmlns : xsl ="http://www.w3.org/1999/XSL/Transform"> < xsl : template match ="root"> < html xmlns ="http://www.w3.org/1999/xhtml" > < head runat ="server"> < TITLE > Responses </ TITLE > < LINK href ="../css/response.css" type ="text/css" rel ="stylesheet" /> < script language ="Jscript"> <xsl:comment><![CDATA[ fun ...Show All

©2008 Software Development Network