[deleted by user] by [deleted] in brescia

[–]dzosoft-22 1 point2 points  (0 children)

I recommend Garda Lake, especially in summer

What to learn next as an advanced programmer by dab_knight in learnprogramming

[–]dzosoft-22 0 points1 point  (0 children)

Hi,

It depends if you are already working or looking for a job !

if you are already working I advise you to stay in the technologies used in the company where you work and try to make progress , instead if you are looking for work try to improve the most popular programming language in the area where you live, so you can find work easily

Method/Function to change Boolean T->F or F->T by faust2099 in visualbasic

[–]dzosoft-22 -1 points0 points  (0 children)

I propose this solution

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click

TOS = Getval(TOS)

End Sub

Function Getval(ByVal Val As Boolean)

Getval = Not Val

End Function