
rustyfancy
Avatar/Signature-
Posts
32 -
Joined
-
Last visited
Content Type
Profiles
Forums
Blogs
Events
Articles
Resources
Downloads
Gallery
Everything posted by rustyfancy
-
!!! HELP !! Creating a XmlNode Array !!!
rustyfancy replied to rustyfancy's topic in Database / XML / Reporting
Hey Alex, Thanks for reply. Let me explain a little more. By the way, I'm using C#, not VB. Is there anyway you could include your examples in C#? Thanks. I've got an XmlNodeList. I run a query, and pull out specific nodes from the XmlNodeList that match the query statement. I need to create a new XmlNodeList from these selected nodes so that I can pass this new XmlNodeList into another function. I hope you can help. This will REALLY solve a huge problem for me. I appreciate it Alex. --Matt -
Hi All, I'm iterating through an XML document, using C# .NET. I need to save specific nodes on the fly....to do later searches on those nodes. How can I save these nodes?? XmlNodeList doens't contain an "Add" method...and ArrayList doesn't support 'XmlNode' type objects. Any suggestions ???? Please help. --Matt
-
Hi All. I have a pictureBox that I need to draw ON TOP of. I'd like to be able to draw a tiny square wherever the user clicks on top of my picture box. I've got a mouse handler for the form and have converted the screenPoint to the formPoint successfully. This tiny square drawing works everywhere but on top of the picture box. Please help. --Matt
-
I have two forms...Form1 and Form2. When I open Form2, it lies over Form1. How can I prohibit the user from clicking anywhere on Form1, and thus, making it the topmost Form. I ONLY want the user to be able to click on Form2 when it's Visible. --Matt
-
Does anyone know how to override or disable the Exit button ("X") on the top right hand corner of a windows form?? The maximize and minimize controls can be disable though the property builder, but the Exit button cannot. I'm working with multiple forms, and by default when the "X" button is clicked, the form is disposed, and thus, lost forever!!!!!!! ---Matt
-
Thanks for the reply. I've successfully added the COM components. Now, how do I include it on my form? I've dragged the ShockWave object onto my form, but there's no "File" option to select in the Property builder. Any information will help. --Matt
-
I'm interested in some simple tweening and morphing graphics that I'd like to put on my windows form. Anyone know how to import Flash animation into the .NET framework. Any information will help. --Matt
-
I have an XML file structure.... <XMLFile> <Batters> <Batter> <LastName> Smith </LastName> <FirstName> Matt </FirstName> </Batter> </Batters> </XMLFile> I need to search for this specific Node, change an element in the node (say for instance, "LastName"), and then save the file. Any ideas??? ---Matt
-
Does anyone know how to programatically create nested dataset tables within dataset tables in C#? Here's a general idea of my target structure.... <DataSet> < Building > <Building Name> Hospital < /Building Name > < /Building > < Employees> <Employee ID> 10032 < /Employee ID > <Appointments> <Date> 10/1/2004 < /Date > <With Who> Mr. Smith </ With Who> </Appointments> < /Employees> </DataSet> Basically, I have 3 tables..."Building", "Employees", and "Appointments." I need the "Appoinments" table to be nested within the "Employees" table. Any information will help !!!!!!!! --Matt
-
The structure of my XML files is... <Table> <Players> <LastName> Sebek </LastName> <FirstName> Matt </FirstName> <Number> 8 </Number> </Players> <Players> <LastName> Samples </LastName> <FirstName> Matt </FirstName> <Number> 10 </Number> </Players> </Table> I have a search textfield. When "8" is entered into the TextBox, I want the first entry to be displayed. When "Matt" is entered in TextBox, I want both entries to be displayed.
-
Hey, I'm using a XML data structure to store data in C# .NET name/phone number rolodex. Any one know off hand how to query this data? I'm new to XML, so code samples will help. Thank you. --Matt
-
Hey, I'm using a XML data structure to store data in C# .NET name/phone number rolodex. Any one know off hand how to query this data? I'm new to XML, so code samples will help. Thank you. --Matt
-
I am creating a stand-alone program that needs to store data without a network connection or database access. To do this I'm using XML files. Ok, everything sounds dandy so far. My problem is in accessing and editing this data. Is this possible?? I've heard I can use SQL commands on this XML data. Can it still be donw without a connection to a SQL Server?? Any information (or code samples) will help. --Matt
-
Hey, Just wondering if anyone had any knowledge about data access using SQL commands with XML, under a C#.NET atmosphere. I'm using XML files to store and retrieve data...and I need to specific queries on this data. I'm new to this, so if anyone has any code samples of SQL commands...send them my way (rustyfancy@hotmail.com) ---Matt
-
Hey, Anyone know how to include multiple Tables with various amounts of colums/rows in a single XML file??? --Matt
-
To anyone with XML and DataSet() knowledge... I need to create an event such that everytime the mouse is clicked on a Windows form, the x and y-coordinates are saved into an XML document for future retrieval. I know how to GET the mouse coordinates, now I need to know how to update an XML on the fly, everytime the mouse is clicked. Any answers???? ---Matt
-
Mutant, Thanks for the help, as always. What's the scope on this PointToClient method?? Is it a method of my form?? (i.e. form.PointToClient(Point p)) I need some code snippet here, sorry.
-
Here's my code... Point p = Cursor.Position; int x = p.X; int y = p.Y; textBox1.Text = "(" + x.ToString() + " , " + y.ToString()+")"; Graphics g = this.CreateGraphics(); g.FillRectangle(Brushes.Red, x,y, 1, 1);
-
Guys, Thanks for the help. I can GET a point to draw now. However, it isn't EXACTLY where my cursor is set. It's almost opposite coordinates of where I click. Ever have this occur?
-
Hey Volte Face, How do I set up the Graphics object??
-
Anyone know how to draw a single point in C#.NET??? I'm not good with GDI yet. ---Matt
-
Volte Face, Thanks for the reply. If I want to display these variable to say, a messageBox, or a textBox...how do I do it??? How do I use these variables?? --Matt
-
Anyone know how to return Mouse X and Y-coordinates in C#.NET??? I need to access these coordinates and pump them into an XML file. (I need to save them to a variable) Any information you can give me would be helpful.