Hello Guest it is April 26, 2024, 10:57:08 AM

Author Topic: No Menu Button?  (Read 7343 times)

0 Members and 1 Guest are viewing this topic.

sunangel

*
No Menu Button?
« on: October 25, 2009, 10:29:54 AM »
So, like I've went to the Config->General Config... , after making changes to No System Menu in Mach3 Checkbox, i get this dialog:



So, how do I make this button?

Is there a way of read/write XML files using VB?

Sunmix

Offline ger21

*
  • *
  •  6,295 6,295
    • View Profile
    • The CNC Woodworker
Re: No Menu Button?
« Reply #1 on: October 25, 2009, 07:54:09 PM »
Use Screen4 or Machscreen to add a button to the screen.
Gerry

2010 Screenset
http://www.thecncwoodworker.com/2010.html

JointCAM Dovetail and Box Joint software
http://www.g-forcecnc.com/jointcam.html

Offline stirling

*
  • *
  •  2,188 2,188
  • UK
    • View Profile
    • www.razordance.co.uk
Re: No Menu Button?
« Reply #2 on: October 26, 2009, 05:52:56 AM »
Is there a way of read/write XML files using VB?
An XML file is just a text file so you could do what some folks do and just hack it. Alternatively you could do it right and use the XML Document Object Model (DOM). Depends on which VB you're using so search tinterweb for xml document object model in vb.

sunangel

*
Re: No Menu Button?
« Reply #3 on: October 26, 2009, 09:09:01 AM »
Quote
Use Screen4 or Machscreen to add a button to the screen.

Yes, what OEM Code of Button should it be?

Quote
An XML file is just a text file so you could do what some folks do and just hack it. Alternatively you could do it right and use the XML Document Object Model (DOM). Depends on which VB you're using so search tinterweb for xml document object model in vb.

If we are using Mach3's Cypress VB  for accessing XML, is it possible? I have not heard of a tutorial of read/write XML using VB6. T_T

Offline stirling

*
  • *
  •  2,188 2,188
  • UK
    • View Profile
    • www.razordance.co.uk
Re: No Menu Button?
« Reply #4 on: October 26, 2009, 10:35:45 AM »
If we are using Mach3's Cypress VB  for accessing XML, is it possible?
yes - though it may get less than reliable depending on how deep you want to get.
I have not heard of a tutorial of read/write XML using VB6. T_T
so if you google "xml in vb6" it comes back with nothing? - I don't think so - see attached pic

sunangel

*
Re: No Menu Button?
« Reply #5 on: October 26, 2009, 11:20:47 AM »
stirling,

yes, thank you for your explanation. Not being sarcastic, but it's quite hard to find a solution that is directly compatible within Mach3's Cypress VB. That's what I meant. So far I only managed to play with read/write using text files, but for really read/write of XML, i find myself still impossible, but may not be to you.

I've been looking for it for years. I self learn VB through Mach3, I can't go any further because I don't understand the original VB works, only Mach3's Cypress VB.

Offline stirling

*
  • *
  •  2,188 2,188
  • UK
    • View Profile
    • www.razordance.co.uk
Re: No Menu Button?
« Reply #6 on: October 26, 2009, 05:59:21 PM »
ok - a bit of confusion on my part as to whether you were wanting tuts for vb6 or cypress - my apologies.
best I can suggest are these links - just bear in mind that cypress enable is not exactly a text book example of well implemented vb. It will fail where it shouldn't from time to time - but just battle away and code round it best you can.
http://www.cypressinc.com/enduser.pdf
http://www.w3schools.com - particularly XML DOM
Hope this helps