Hello Guest it is March 28, 2024, 07:19:35 PM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - swetha22

Pages: 1
1
Brains Development / Need help to trigger output based on axis dro
« on: May 28, 2013, 09:50:24 AM »
Hi ,
i wrote a brain to trigger output1 when axis dro reach 25
i want to set the compare value '25' by a variable set through a wizard.
how can i do this?

2
Hi,
Is there any way to develop wizard for relief turning?
Pl see the video
http://www.youtube.com/watch?v=pcOfChvoj40
thanks

3
VB and the development of wizards / dynamic file number
« on: February 06, 2009, 11:45:25 AM »
Hi ,
i just want to inform what i came across .
i am developing a new wizard for a cnc dressing unit . requirement is to save the .tap file with profile number every time they change the values in wizard .
here is the way i implemented.

Profile_no = GetOEMDRO (1085)
OpenTeachFile  "Pro_No - "&Profile_no

every time it creates  a new file with a number given in wizard .
Thanks & Regards
Krishna


 

4
VB and the development of wizards / Re: can any one chech this code
« on: January 03, 2009, 11:57:17 AM »
that's really nice and that's all i want ...thanks and thanks again.
swetha

5
VB and the development of wizards / can any one chech this code
« on: January 02, 2009, 01:10:01 PM »
i was trying to get angle of x,y .Please check the following code and tell me what i am doing wrong .
assumed result of xangle is 45 and i am getting 37.20.
 Dim x1
 Dim x2
 Dim y1
 Dim y2

 Dim x0
 Dim y0
 Dim hy
 Dim ad
 Dim aasine
 Dim xan
 
 x1 = -50
 x2 = 0
 y1 = 0
 y2 =50
 
 
 x0 = (x2-x1)^2
 
 y0 = (y2-y1)^2
 
 hy = Sqr(x0+y0)
 
 ad = x2 - x1
 
 aasine = (ad/hy)
 xangle = (Sin(aasine)*180/3.142857142857)
 
 Print("x0 is " & x0)
 Print ("y0 is "& y0)
 Print ("hypotenuse is "& hy)
 Print ("aasin is "& Aasine)
 Print ("xangle is "& xangle)
thanks
krishna

6
VB and the development of wizards / Re: angle of a line between 2 points
« on: December 28, 2008, 12:41:25 PM »
Thank you .

7
VB and the development of wizards / angle of a line between 2 points
« on: December 28, 2008, 02:17:10 AM »
Hi, i want to calculate the angle of a line between 2 points (x1,y1)-(x2,y2).Is there any built in function for this in mach?
please  help me out with formula code.
Thanks
Krishna

8
VB and the development of wizards / screen4 problem
« on: December 20, 2008, 12:05:17 AM »
Hi, i was trying to create a new screen using screen4 .when i select a background image it is not visible in screen .please advise me what i am doing wrong ?

Pages: 1