المشاركات

عرض الرسائل ذات التصنيف code

Installation did not complete successfully. see the IDE log for details - Android studio

صورة
First :   Downloaded SDK from beginning , and change the SDK path to the new one, then it all will work  Downloaded SDK from beginning , and change the SDK path to the new one, then it all will work.  Second : Run android studio with Administrator Mode

Apache2 but unable to run php file in linux

  😏 PHP code is not being executed Solution First : disable firwall Second: Go to Terminal  sudo apt-get update sudo apt-get install apache2 php sudo service apache2 restart 🥰🥰

Change background color of MDIParent Form in VB.Net

 Solution :   Private Sub bgColor()      Dim child As Control      For Each child In Me .Controls          If TypeOf child Is MdiClient Then              child.BackColor = Color.CadetBlue          Exit For          End If      Next      child = Nothing      End Sub

How to run file In vb.net ?

Code for run file : Process.Start ( "example.txt" )

Copy file in vb.net

How to copy a file in vb.net   My.Computer.FileSystem.CopyFile( " C:\test.txt" , _ "C:\test2.txt" , overwrite:= False )