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

Software Development Network >> old mpipe's Q&A profile

old mpipe

Member List

Ben Vaughan
le tan duc
alien-
Mobo81
danych
Sharath paleri
Sunchaser
MattiasAron
Joe Mack
IMZiggy
keith1000
LiamD
Nick Rumble
Heinsz
Brian Stringham
FlashFan
WV John
pessi
Shihan
JustPlayingAround
Only Title

old mpipe's Q&A profile

  • Gadgets XmlHttpRequest and file access

    Hello guys. i've just started developing gadgets, so these might be basic questions. ok, i've just developed a gadget which streams radio and returns info about the current track and author. i'm using xmlhttprequest and everything seems to work ok but sometimes i start getting the traditional access denied error which occurs in cross domain calls. i'm giving full permissions on the xml gadget fil so i'd be interesting in getting more info about this kind of errors and how to solve them in gadgets. i'm trying to write a file with some info that should be shared by all gadgets. i'm using thsi code: var pathToFile = System.Gadget.path + "\\lista.txt"; function saveFavorites( lst ){ var fso = new ActiveXObject( "Scripting.File ...Show All

  • .NET Development How To Get Previous node Value

    Hi I have the following xml <TestRequests> <TestRequest> <Category>Hem</Category> </TestRequest> <TestRequest> <Category>Allergen</Category> </TestRequest> </TestRequests> using <xsl:for-each> to loop thu the TestRequest node, how to retrieve the previous category name (i.e Hem) when i am currently processing with Category 'Allergen' Regards Gururaja Hi, < xsl:value-of select = " Category " /> The above line will give you value of CURRENT Category node. < xsl:value-of select = " preceding-sibling::*[1] " /> The above line will give you ...Show All

  • Visual Basic Word.doc

    Is it possible to open a word.doc in a RichTextBox and if yes, how Hello, i don't find Microsoft.Office.Interop.Word in the Com tab of the Add Reference dialog Word is not installed on my dev-computer. I want to write the app for another computer on which word is installed. Must word be installed, or what can be the reason that i don't see the Microsoft.Office.Interop.Word Regards Markus ...Show All

  • SQL Server Restoring Database through .mdf file

    how 2 restore database in MS SQL 2005 using .mdf & .ldf file You don’t need to restore from a MDF, you can simply attach the files using either the sp_attachdb commadn from TSQL or the option that comes up while rightclicking on the database node in SQL Server MS. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Windows Forms how to make two buttons, which are into tablelayoutpanels, exactly the same in all the app

    Hello, I want to make two buttons, exit and save buttons, exactly the same in all the forms of the app. The problem is that they are into tablelayoutpanels, so putting it in the same position in all the app is very very hard. I want to make a function that should do the following: make the buttons the same size (i know how to do it) make the distances between them and the distance until the right and the botton edge of the form exactly the same in all the forms. ( i do NOT know how to do it ). Is there a way to take out the buttons from the tablelayoutpanel and make it float over them If so i could make all the buttons exactly the same. Thanks in advance. Hi, You can achieve the functionality in the following ...Show All

  • Visual Basic VB.NET & MySQL

    Okay, I am a complete newbie at this and I was wondering if someone could help me setup a connection in VB2005 to MySQL. I'm trying to write a piece of software that will store information on a centralized server so that it can be accessed from anywhere in our network. Can someone PLEASE help me. Thanks, QWERTYtech http://qwertytech.bounceme.net Aight the site is very helpful except for the fact that it doesn't give me full syntax to setup my Connection. It gives me the specific information for the type of connection that I want to make. But I'm not sure how to setup the full CONNECTION syntax. Also, I was wondering if you might know what commands & syntax to add information to a databas ...Show All

  • Visual C++ DateTime::Now

    How would I use a timer and DateTime::Now in order to string a clock that keeps up with the system's For Hours, Minutes, and Seconds There are 1000 milliseconds in a second. Assuming label1 is the control that contains the current time, the following is an example of updating the current time on a form: public partial class Form1 : Form { private System.Windows.Forms.Timer timer1; public Form1 ( ) { InitializeComponent(); if ( this .components == null ) { this .components = new System.ComponentModel.Container(); } this .timer1 = new System.Windows.Forms.Timer( this .components); this .timer1.Tick += new System.EventHandler( this .timer1_Tick); timer1.Interval = 1000; // update once a second timer1.En ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Cannot create Xbox 360 game with Beta 2

    Hello, everytime I try to create a new 360 Game, and windows game for that matter, I get this: Could not load type "Microsoft.Xna.Framework.COntent.ContentSerializerCollectionItemNameAttribute" from assembly "Microsoft.XNA.Framework, Version 1.0.0.0, Culture=neutral, PublicKeyToken=f48fa5f25d27e8ff". Any idea on what could have caused this error I reinstalled GSE, and I look for a similar error in the readme and came up with nothing. It happens on both of the project types. I reinstalled both C# Express and GSE, and I continue to get the same error. Any solutions ...Show All

  • SQL Server View 2005 AS cube through the web

    Is there a way to allow users to browse a cube through the web after deployment using AS Something in capability like the AS Cube Browser Or, is Reporting Services the only way to go You should distinguish between the way you browse Analysis Services and ablility to access Analysis Services throgh HTTP protocol ( this is what I think you mean when you say you would like to browse through "the web"). Here is previous thread about client application you have supporting browsing data in Analysis Services http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=674521&SiteID=1 As for the setting up HTTP access. Here is whitepaper: http://www.microsoft.com/technet/prodtechnol/sql/2005/htt ...Show All

  • Internet Explorer Development Clear IE History From C#

    How can I do this I've tried a bunch of foreach statements, even tried some Win32 stuff, and I havent been able to do it... I didn't have the search option part, and that's probably why it didn't work. Thanks. But now I'm encountering another problem, where on form_load the files are deleted, even though I have it clearly put in the webbrowser_navigated event, and also, when the webbrowser navigates, the history files arent deleted.... ...Show All

  • Visual C# Drag over TrayIcon

    I need a help with my project . I need to implement that when I drag over TrayIcon a file with mouse that TryIcon of the form maximize the form .. Please help ..... And what Brendan is saying is that this is very non-standard functionality. You should try to conform your application to accepted Windows standards so that it is intuitive to your users. Dragging something over a tray icon is not intuitive. I'm not even sure its possible, even using Win32 API's. So again, why are you trying to do this Maybe if you explain the motivation behind this requirement, we can help you figure out a better way to achieve your goal. ...Show All

  • Visual Studio Express Editions Missed Reference

    Hi. I have a problem with references. I am writing an application to automate an excel spreadsheet. The references were added correctly using "add reference" dialogue box and in the code I added the line "using ..." The project ran perfectly, but today the code does not run, i don't know why, and launch an error message like this: "Error 1 The type or namespace name 'Interop' does not exist in the namespace 'Microsoft.Office' (are you missing an assembly reference ) " The referece were added, in the project and in the code. I've checked the path "...Visual studio 2005/projects/myProyect/myProject/obj/debug/" and the file "interop.Excel" is correctly located. Could anyone help me to fix th ...Show All

  • Connected Services Framework Stock quote sample not working

    Hi, I'm trying to get the stock quote sample up and running, but I always get this error message: "The remote name could not be resolved: ws.cdyne.com" As far as I know the resolve should work just fine. I manually verified that the webservice at http://ws.cdyne.com/delayedstockquote/delayedstockquote.asmx exists, is reachable and works perfectly. Can it be that CSF isn't using the proxy server settings from Internet Explorer Greetings, Leon Zandman No, it still doesn't work. The solution Marinus Holkema proposed also didn't work. I'm currently assigned to a different project, so I haven't been able to do some more research. Marinus (who is a direct colleague of mine) has rece ...Show All

  • Visual Studio Team System How do you develop team build scripts?

    I must have missed something here, how do you actually develop your team build scripts I have my basic Team build file created in the browser, but as soon as I want to add and change it it appears that I have to edit the file, save, checkin, run the team build from the server, wait for it to do its build and then find out I have a typo or missed somethign out. I tried running it locally but dont seem to get the same set of events and I believe this is due to settings such as IsDesktopBuild being different when I run locally using MSBuild. How do I go about actually developing my Team Build script without the whole checkin / run remote cycle thanks for any help Aaron thanks very much for the an ...Show All

  • Windows Forms C# and Arrays

    Hello Everyone, I have a form, which user fills and I check if that has some errors and then store it in an array.. I'm facing couple problems :- 1) Define - string[] form; // Array is fine here, if I don't know the size how should I do it.. 2) Secondly, to make my life simple what I was doing was string field; string message; form[field] = message; // The above means field can be used as location like (0) or something...but it doesn't let me do it... What would be the best way to tackle the above problem. Thanks, Harsimrat question is, DO you need to use an array if so why what are you trying to do after the user enters data from the form what you could do, is make a c ...Show All

©2008 Software Development Network