المشاركات

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

Replace Text with star (***) while typing in java android studio

 EditText edittxtpassword = findViewById(R.id.edittxtpassword);  edittxtpassword.setTransformationMethod(new  MyPasswordTransformationMethod()); public class MyPasswordTransformationMethod extends PasswordTransformationMethod { @Override public CharSequence getTransformation(CharSequence source, View view) { return new PasswordCharSequence(source); } private class PasswordCharSequence implements CharSequence { private CharSequence mSource; public PasswordCharSequence(CharSequence source) { mSource = source; } public char charAt(int index) { return '*'; } public int length() { return mSource.length(); } public CharSequence subSequence(int start, int end) { return mSource.subSequence(start, end); // Return default } } };     source : https://wordpress.com/post/qforce519945958.wordpress.com/236

طريقة فتح أكثر من حساب للفيس بوك او التويتر او الانستغرام على نفس الهاتف

صورة
  طريقة فتح أكثر من حساب للفيس بوك او التويتر او الانستغرام على نفس الهاتف   تستطيع تنزيل تطبيق Parallel Space من متجر جوجل بلاي من هنا   بعد تنزيل التطبيق اختر منه الانستغرام او الفيسبوك او التويتر وتمتع بأكثر من حساب على نفس الهاتف

How to get the file location of the current wallpaper file in ubuntu?

Problem : How to get the file location of the current wallpaper file in ubuntu Solution : Write line in Terminal  gsettings get org.gnome.desktop.background picture-uri

Removing broken packages in Ubuntu

صورة
Problems Removing broken packages in Ubuntu failed to execute command google-chrome-beta %u broken ubuntu Solution Step 1: Write  sudo apt-get install synaptic to get the name of the broken packages Broken packages ==> libnvidia-ifr1-460 :1386   Step2 :Go to Synaptic Package Manager Step3 : Search for broken packages name . And choose "Mark for removable" then click Apply   Step 4: Go to Update Manager Step 5 : Click Refresh , Install Update   Step 6 : Download chrome beta from site  https://www.google.com/chrome/beta/   Thank you 😊            

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" )

Repaint artificats problem when drag window (problem drag windows in linux mint)

صورة
Solution :