Date   

Azure DevOps

Tom Worthen
 

I have seen some comments on here concerning Azure DevOps. Our company is now looking at making the move to Azure DevOps. We have been using TFS on a 2008 server for a number of years and are not upgrading to a 2019 server where the only option is Azure DevOps. So, does anyone have any suggestions of things to avoid? Steps to take to make sure it is a smooth transition?

 

I presume there is not a migration path to take the history from what we have now over to Azure DevOps. We have lost our history on programs before so that is not a huge concern. I am presuming we will need to setup the projects under Azure DevOps and then checkin/load the source to get everything started.

 

I have seen some comments about still using Visual Studio 2013 for handling some things with Azure DevOps. Since we are currently using Visual Studio 2013 with TFS, what is involved with changing/modifying it to look at Azure DevOps?

 

Thanks in advance,

Tom Worthen

 


Re: offtopic: html timepicker

Polgár Ferenc
 

If this is what you need, the easiest way is to you use a select with the time values you want to allow for the user - as on your image example.
Ferenc

2022. 11. 17. 17:10 keltezéssel, Tom Worthen írta:

Ferenc,

 

Yes, as I had mentioned earlier you have to use javascript or css to “validate” the time with standard html time. That is the reason I was attempting to get the jquery code to work because it did not require additional javascript and only allows the users to select times you specify. Here is the “test” example I got working but I can’t get it to work on our web pages. L

 

 

Yes, the user could manual enter a time but it shows them what is wanted and makes it easy for them the select what you want them to select.

 

Thanks,

Tom

 

From: main@magicu-l.groups.io [mailto:main@magicu-l.groups.io] On Behalf Of Polgár Ferenc
Sent: Thursday, November 17, 2022 10:59 AM
To: main@magicu-l.groups.io
Subject: Re: [magicu-l] offtopic: html timepicker

 

Hi Tom,

Try this:

https://stackoverflow.com/questions/16979122/how-to-set-min-value-for-input-type-time-elements

Ferenc

2022. 11. 17. 15:14 keltezéssel, Tom Worthen írta:

Friedrich,

 

The reason for attempting to get this plugin working is because it restricts the times to what you want whereas the type=”time” does not. Yes, you can accomplish the same functionality by telling the user after the fact that they chose something that is not valid but the plugin doesn’t allow them to even select something you don’t want them to. Also, the plugin handles the step=”xxx” whereas the standard type=”time” does not.

 

Since I am unable to get this working I am abandoning it for now but as for the user experience I think it would be better to not allow them to select something you don’t want them to from the beginning.

 

Thanks,

Tom

 

From: main@magicu-l.groups.io [mailto:main@magicu-l.groups.io] On Behalf Of Friedrich Geisler-Buckert
Sent: Wednesday, November 16, 2022 3:26 AM
To: main@magicu-l.groups.io
Subject: Re: [magicu-l] offtopic: html timepicker

 

Hi Tom,

 

it is hard to say, what is wong with your code - one wrong bracket is enough to get an error.

 

Why do you use the jquery-Plugin? 

In modern browser most times  <input type="time">  or <input type ="date"> is much better and easier.

Regards

Friedrich



Re: offtopic: html timepicker

 

F*ck - your are right - this is not working

Good luck with the other plugin


Re: offtopic: html timepicker

Tom Worthen
 

Ferenc,

 

Yes, as I had mentioned earlier you have to use javascript or css to “validate” the time with standard html time. That is the reason I was attempting to get the jquery code to work because it did not require additional javascript and only allows the users to select times you specify. Here is the “test” example I got working but I can’t get it to work on our web pages. L

 

 

Yes, the user could manual enter a time but it shows them what is wanted and makes it easy for them the select what you want them to select.

 

Thanks,

Tom

 

From: main@magicu-l.groups.io [mailto:main@magicu-l.groups.io] On Behalf Of Polgár Ferenc
Sent: Thursday, November 17, 2022 10:59 AM
To: main@magicu-l.groups.io
Subject: Re: [magicu-l] offtopic: html timepicker

 

Hi Tom,

Try this:

https://stackoverflow.com/questions/16979122/how-to-set-min-value-for-input-type-time-elements

Ferenc

2022. 11. 17. 15:14 keltezéssel, Tom Worthen írta:

Friedrich,

 

The reason for attempting to get this plugin working is because it restricts the times to what you want whereas the type=”time” does not. Yes, you can accomplish the same functionality by telling the user after the fact that they chose something that is not valid but the plugin doesn’t allow them to even select something you don’t want them to. Also, the plugin handles the step=”xxx” whereas the standard type=”time” does not.

 

Since I am unable to get this working I am abandoning it for now but as for the user experience I think it would be better to not allow them to select something you don’t want them to from the beginning.

 

Thanks,

Tom

 

From: main@magicu-l.groups.io [mailto:main@magicu-l.groups.io] On Behalf Of Friedrich Geisler-Buckert
Sent: Wednesday, November 16, 2022 3:26 AM
To: main@magicu-l.groups.io
Subject: Re: [magicu-l] offtopic: html timepicker

 

Hi Tom,

 

it is hard to say, what is wong with your code - one wrong bracket is enough to get an error.

 

Why do you use the jquery-Plugin? 

In modern browser most times  <input type="time">  or <input type ="date"> is much better and easier.

Regards

Friedrich


Re: offtopic: html timepicker

Tom Worthen
 

For dates what you suggest might work very well. What I said was that for time input the max, min and step have no effect on the input.

 

Here is my input: <input id="Requested_Time" name="Requested_Time" type="time" min="08:00" max="17:00" step="900">

 

As you can see, I have set the minimum time to 8:00 and the max to 17:00 with a step of 900 seconds which is 15 minutes, meaning the only valid time entries should start at 8:00 and continue until 17:00 every 15 minutes.

 

This is what I get on the page:

 

As you can plainly see, those setting are ignored.

 

Thanks,

Tom

 

 

From: main@magicu-l.groups.io [mailto:main@magicu-l.groups.io] On Behalf Of Friedrich Geisler-Buckert
Sent: Thursday, November 17, 2022 10:50 AM
To: main@magicu-l.groups.io
Subject: Re: [magicu-l] offtopic: html timepicker

 

I don't know, what are your requirement, but there are lot of attrubutes with "Time". I think for most cases it is very good:




inclusive a step value

 

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/time

 

I used the jquery-ui Date-picker plugin a few years ago, which is quite the same - it was a nightmare. Now i only use the HTML Input
Eg.
With jquery


With HTML

 


Re: offtopic: html timepicker

Polgár Ferenc
 

Hi Tom,

Try this:

https://stackoverflow.com/questions/16979122/how-to-set-min-value-for-input-type-time-elements

Ferenc

2022. 11. 17. 15:14 keltezéssel, Tom Worthen írta:

Friedrich,

 

The reason for attempting to get this plugin working is because it restricts the times to what you want whereas the type=”time” does not. Yes, you can accomplish the same functionality by telling the user after the fact that they chose something that is not valid but the plugin doesn’t allow them to even select something you don’t want them to. Also, the plugin handles the step=”xxx” whereas the standard type=”time” does not.

 

Since I am unable to get this working I am abandoning it for now but as for the user experience I think it would be better to not allow them to select something you don’t want them to from the beginning.

 

Thanks,

Tom

 

From: main@magicu-l.groups.io [mailto:main@magicu-l.groups.io] On Behalf Of Friedrich Geisler-Buckert
Sent: Wednesday, November 16, 2022 3:26 AM
To: main@magicu-l.groups.io
Subject: Re: [magicu-l] offtopic: html timepicker

 

Hi Tom,

 

it is hard to say, what is wong with your code - one wrong bracket is enough to get an error.

 

Why do you use the jquery-Plugin? 

In modern browser most times  <input type="time">  or <input type ="date"> is much better and easier.

Regards

Friedrich


Re: offtopic: html timepicker

 

I don't know, what are your requirement, but there are lot of attrubutes with "Time". I think for most cases it is very good:




inclusive a step value

 

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/time

 

I used the jquery-ui Date-picker plugin a few years ago, which is quite the same - it was a nightmare. Now i only use the HTML Input
Eg.
With jquery


With HTML


 


Re: offtopic: html timepicker

Tom Worthen
 

Friedrich,

 

The reason for attempting to get this plugin working is because it restricts the times to what you want whereas the type=”time” does not. Yes, you can accomplish the same functionality by telling the user after the fact that they chose something that is not valid but the plugin doesn’t allow them to even select something you don’t want them to. Also, the plugin handles the step=”xxx” whereas the standard type=”time” does not.

 

Since I am unable to get this working I am abandoning it for now but as for the user experience I think it would be better to not allow them to select something you don’t want them to from the beginning.

 

Thanks,

Tom

 

From: main@magicu-l.groups.io [mailto:main@magicu-l.groups.io] On Behalf Of Friedrich Geisler-Buckert
Sent: Wednesday, November 16, 2022 3:26 AM
To: main@magicu-l.groups.io
Subject: Re: [magicu-l] offtopic: html timepicker

 

Hi Tom,

 

it is hard to say, what is wong with your code - one wrong bracket is enough to get an error.

 

Why do you use the jquery-Plugin? 

In modern browser most times  <input type="time">  or <input type ="date"> is much better and easier.

Regards

Friedrich


Re: Mouse Scrolling

 

Since xpa 3.2 there s a Special Setting "Disable Mousewheel"

May be you migrate....

Regards
Friedrich


Mouse Scrolling

De Netwerkadviseur BV
 

Hi,

Is there a way to disable mouse scrolling on V9.4?
PgUp and PgDwn are succesfully blocked, but I did not succeed with scrolling.

Kind regards,
André


Re: offtopic: html timepicker

 

Hi Tom,

 

it is hard to say, what is wong with your code - one wrong bracket is enough to get an error.

 

Why do you use the jquery-Plugin? 

In modern browser most times  <input type="time">  or <input type ="date"> is much better and easier.

Regards

Friedrich


Re: Pic2Shop for IOS

Wolfgang Mayer
 

Hi Todd!

Ok, I didn't think that was in the sample programs now.
 
Thank you very much


offtopic: html timepicker

Tom Worthen
 

I am attempting to add a jquery timepicker to an html page. I like the control that seems to be made available with this one. If you are interested you can find it here: https://timepicker.co/.

 

Since I am not using npm, bower or cdnjs, I downloaded the zip file. I was able to get the test page to work similarly to the one on the website after a couple of minor changes to the visual.html page.

 

I added the lines required to bring the css and js required into my page. If you are not familiar with this I used <link rel="stylesheet" type="text/css" media="screen" href="/web_pro/assets/plugins/jquerytimepicker-1.3.5/jquery.timepicker.css"> for the style sheet and <script scr="/Web_Pro/assets/plugins/jquerytimepicker-1.3.5/jquery.timepicker.js"></script> for the script. This page has several other css files and js files that are handled in the same manor.

 

There is also a line that is required in the document ready function that looks like this: $('input.timepicker').timepicker({});

 

These 3 files are referenced on the page mentioned above. Last but not least is the input field with a class of timestamp.

 

My problem is that when I attempt to load this page I am getting an error: Uncaught TypeError: $(...).timepicker is not a function

 

I have tried several things but it appears to me as if the js file is not getting loaded. Does anyone know of an easy way to determine if an external js file is loaded on a page or why it can’t find that function?

 

Thanks,

Tom Worthen

Ph: (770) 579-1323

Fax: (770) 579-1692
Email: tworthen@...

CONFIDENTIALITY NOTICE:
This e-mail and any attachments contain information from Prorizon Corporation, and are intended solely for the use of the named recipient or recipients. This e-mail may contain privileged attorney/client communications or work product. Any dissemination of this e-mail by anyone other than an intended recipient is strictly prohibited. If you are not a named recipient, you are prohibited from any further viewing of the e-mail or any attachments or from making any use of the e-mail or attachments. If you believe you have received this e-mail in error, notify the sender immediately and permanently delete the e-mail, any attachments, and all copies thereof from any drives or storage media and destroy any printouts of the e-mail or attachments.

 


Re: minor issue with shortcuts (brain fart?)

Stephen Saxton
 

LockFile  = new_mglock.dat

no path specified.



CABS²/AODs
Senior Magic Software Engineer/IT Help Desk
954-330-7894
Facetime:  ssaxton2@...
Facebook Messenger:  ssaxton2@...
SKYPE:  ssaxton2
Retired USAF TSgt


-----Original Message-----
From: sherman levine <sherman.levine@...>
To: main@magicu-l.groups.io; john.knickerbocker@... <john.knickerbocker@...>
Sent: Mon, Nov 14, 2022 4:23 pm
Subject: Re: [magicu-l] minor issue with shortcuts (brain fart?)

What is the lock file path in magic.ini ?


On 11/14/2022 4:09 PM, Stephen Saxton via groups.io wrote:
Thanks John, 

That worked great from the server, but when I tried from a workstation, I got all the way to another error message prior to a menu showing up; this does not show up when I ran the shortcut from the server, but does from a windows 10 desktop:





CABS²/AODs
Senior Magic Software Engineer/IT Help Desk
954-330-7894


-----Original Message-----
From: John Knickerbocker <john.knickerbocker@...>
To: main@magicu-l.groups.io
Sent: Mon, Nov 14, 2022 12:49 pm
Subject: Re: [magicu-l] minor issue with shortcuts (brain fart?)

Use UNC instead of mapping a drive.



On Mon, Nov 14, 2022 at 7:42 PM Stephen Saxton via groups.io <ssaxton2=aol.com@groups.io> wrote:
Hi Everybody, 

having a "Brain Fart" today.........






Windows Server 2012 R2 Standard
Magic V8.2 SP7
Btrieve 6.15

When I run the 1st shortcut, everything works. (data viewable)

When I start the 2nd shortcut, it goes into never, never land (never gets to the opening menu)

The L drive is mapped to C:\Magic

The magic.ini file points to C:\Magic\Magic8\... (this work with the 1st shortcut, but not the 2nd)

When I change the magic.ini to point to L:\Magic8\... everything goes back to never, never land (with both shortcuts)

Magic.ini file doesn't have any pointers to an error file (logged into tool kit and Environment does not have any pointers to an error log)

Only see at the top of the screen "Magic Runtime (Not Responding)

Any Pointers?


CABS²/AODs (Always Our Department software)
Senior Magic Software Engineer/IT Help Desk
954-330-7894


Re: Pic2Shop for IOS

Todd Baremore
 

Wolfgang,

In Rich Internet Samples,  program NC02 Barcode (Android & iOS)
Todd
On 11/15/2022 3:33 AM, Wolfgang Mayer via groups.io wrote:

Hello!
 
I would like to integrate Pic2Shop into the Magic IOS App. Is there a tutorial or sample program for this?
 
Thanks


Pic2Shop for IOS

Wolfgang Mayer
 

Hello!
 
I would like to integrate Pic2Shop into the Magic IOS App. Is there a tutorial or sample program for this?
 
Thanks


Re: minor issue with shortcuts (brain fart?)

Anton Doank
 

can you make sure the user can have access modify to that folder

On Tue, Nov 15, 2022, 4:09 AM Stephen Saxton via groups.io <ssaxton2=aol.com@groups.io> wrote:
Thanks John, 

That worked great from the server, but when I tried from a workstation, I got all the way to another error message prior to a menu showing up; this does not show up when I ran the shortcut from the server, but does from a windows 10 desktop:





CABS²/AODs
Senior Magic Software Engineer/IT Help Desk
954-330-7894


-----Original Message-----
From: John Knickerbocker <john.knickerbocker@...>
To: main@magicu-l.groups.io
Sent: Mon, Nov 14, 2022 12:49 pm
Subject: Re: [magicu-l] minor issue with shortcuts (brain fart?)

Use UNC instead of mapping a drive.



On Mon, Nov 14, 2022 at 7:42 PM Stephen Saxton via groups.io <ssaxton2=aol.com@groups.io> wrote:
Hi Everybody, 

having a "Brain Fart" today.........






Windows Server 2012 R2 Standard
Magic V8.2 SP7
Btrieve 6.15

When I run the 1st shortcut, everything works. (data viewable)

When I start the 2nd shortcut, it goes into never, never land (never gets to the opening menu)

The L drive is mapped to C:\Magic

The magic.ini file points to C:\Magic\Magic8\... (this work with the 1st shortcut, but not the 2nd)

When I change the magic.ini to point to L:\Magic8\... everything goes back to never, never land (with both shortcuts)

Magic.ini file doesn't have any pointers to an error file (logged into tool kit and Environment does not have any pointers to an error log)

Only see at the top of the screen "Magic Runtime (Not Responding)

Any Pointers?


CABS²/AODs (Always Our Department software)
Senior Magic Software Engineer/IT Help Desk
954-330-7894


Pengumuman :
Sejak tanggal 2 Desember 2019, Domain Email PT Surya Artha Nusantara Finance telah berubah dari user@... menjadi user@...
Informasi ini dikeluarkan secara resmi oleh PT. Surya Artha Nusantara Finance. Terima kasih 

The contents of this e-mail and attachments are confidential and subject to legal privilege. If you are not the intended recipient, you are strictly prohibited and may be unlawful to use, copy, store, distribute, disclose or communicate any part of it to others and you are obliged to return it immediately to sender or notify us and delete the e-mail and any attachments from your system. PT SURYA ARTHA NUSANTARA FINANCE and subsidiaries do not accept liability for loss or damage resulting from computer viruses. The integrity of e-mail across the internet cannot be guaranteed and PT SURYA ARTHA NUSANTARA FINANCE will not accept liability for any claims arising as a result of the use of this medium for transmissions by or to PT SURYA ARTHA NUSANTARA FINANCE.


Re: minor issue with shortcuts (brain fart?)

sherman levine
 

What is the lock file path in magic.ini ?


On 11/14/2022 4:09 PM, Stephen Saxton via groups.io wrote:

Thanks John, 

That worked great from the server, but when I tried from a workstation, I got all the way to another error message prior to a menu showing up; this does not show up when I ran the shortcut from the server, but does from a windows 10 desktop:





CABS²/AODs
Senior Magic Software Engineer/IT Help Desk
954-330-7894


-----Original Message-----
From: John Knickerbocker <john.knickerbocker@...>
To: main@magicu-l.groups.io
Sent: Mon, Nov 14, 2022 12:49 pm
Subject: Re: [magicu-l] minor issue with shortcuts (brain fart?)

Use UNC instead of mapping a drive.



On Mon, Nov 14, 2022 at 7:42 PM Stephen Saxton via groups.io <ssaxton2=aol.com@groups.io> wrote:
Hi Everybody, 

having a "Brain Fart" today.........






Windows Server 2012 R2 Standard
Magic V8.2 SP7
Btrieve 6.15

When I run the 1st shortcut, everything works. (data viewable)

When I start the 2nd shortcut, it goes into never, never land (never gets to the opening menu)

The L drive is mapped to C:\Magic

The magic.ini file points to C:\Magic\Magic8\... (this work with the 1st shortcut, but not the 2nd)

When I change the magic.ini to point to L:\Magic8\... everything goes back to never, never land (with both shortcuts)

Magic.ini file doesn't have any pointers to an error file (logged into tool kit and Environment does not have any pointers to an error log)

Only see at the top of the screen "Magic Runtime (Not Responding)

Any Pointers?


CABS²/AODs (Always Our Department software)
Senior Magic Software Engineer/IT Help Desk
954-330-7894



Re: minor issue with shortcuts (brain fart?)

Stephen Saxton
 

Thanks John, 

That worked great from the server, but when I tried from a workstation, I got all the way to another error message prior to a menu showing up; this does not show up when I ran the shortcut from the server, but does from a windows 10 desktop:





CABS²/AODs
Senior Magic Software Engineer/IT Help Desk
954-330-7894


-----Original Message-----
From: John Knickerbocker <john.knickerbocker@...>
To: main@magicu-l.groups.io
Sent: Mon, Nov 14, 2022 12:49 pm
Subject: Re: [magicu-l] minor issue with shortcuts (brain fart?)

Use UNC instead of mapping a drive.



On Mon, Nov 14, 2022 at 7:42 PM Stephen Saxton via groups.io <ssaxton2=aol.com@groups.io> wrote:
Hi Everybody, 

having a "Brain Fart" today.........






Windows Server 2012 R2 Standard
Magic V8.2 SP7
Btrieve 6.15

When I run the 1st shortcut, everything works. (data viewable)

When I start the 2nd shortcut, it goes into never, never land (never gets to the opening menu)

The L drive is mapped to C:\Magic

The magic.ini file points to C:\Magic\Magic8\... (this work with the 1st shortcut, but not the 2nd)

When I change the magic.ini to point to L:\Magic8\... everything goes back to never, never land (with both shortcuts)

Magic.ini file doesn't have any pointers to an error file (logged into tool kit and Environment does not have any pointers to an error log)

Only see at the top of the screen "Magic Runtime (Not Responding)

Any Pointers?


CABS²/AODs (Always Our Department software)
Senior Magic Software Engineer/IT Help Desk
954-330-7894


Re: minor issue with shortcuts (brain fart?)

John Knickerbocker
 

Use UNC instead of mapping a drive.



On Mon, Nov 14, 2022 at 7:42 PM Stephen Saxton via groups.io <ssaxton2=aol.com@groups.io> wrote:
Hi Everybody, 

having a "Brain Fart" today.........






Windows Server 2012 R2 Standard
Magic V8.2 SP7
Btrieve 6.15

When I run the 1st shortcut, everything works. (data viewable)

When I start the 2nd shortcut, it goes into never, never land (never gets to the opening menu)

The L drive is mapped to C:\Magic

The magic.ini file points to C:\Magic\Magic8\... (this work with the 1st shortcut, but not the 2nd)

When I change the magic.ini to point to L:\Magic8\... everything goes back to never, never land (with both shortcuts)

Magic.ini file doesn't have any pointers to an error file (logged into tool kit and Environment does not have any pointers to an error log)

Only see at the top of the screen "Magic Runtime (Not Responding)

Any Pointers?


CABS²/AODs (Always Our Department software)
Senior Magic Software Engineer/IT Help Desk
954-330-7894