Monday

Visual Basic Solved: Missing Design View on Windows Form

+ Open the Visual Basic Project file dot.sln
+ Click on Solution Explorer > Show All Files
+ Expand Form1.vb
+ Double-click to open Form1.Designer.vb file
+ Copy and Cut all the code out of the Form1.Designer.vb file
+ Double-click to open the Form1.vb file
+ Paste the Form1.Designer.vb code into the Form1.vb file
+ Save all files
+ Double-click on the Form1.vb file to get back the Form1.vb[Design] Windows Form. Alternatively, you may right-click the Form1.vb and select View Designer to view the Windows Form

No comments:

Measure execution time with Julia, example using sorting algorithms

# random integers between 1 and 100 inclusive, generate thousands of them x = rand ( 1 : 100 , 100000 ) @time sort (x; alg=InsertionSort, r...