Jump to content
Xtreme .Net Talk

rustyfancy

Avatar/Signature
  • Posts

    32
  • Joined

  • Last visited

rustyfancy's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. 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
  2. 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
  3. 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
  4. 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
  5. 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
  6. 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
  7. 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
  8. 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
  9. 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
  10. 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.
  11. 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
  12. 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
  13. 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
  14. 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
  15. Hey, Anyone know how to include multiple Tables with various amounts of colums/rows in a single XML file??? --Matt
×
×
  • Create New...