[JAVA] [Solved]>Malformed expression: “(ERROR)”<

So this Error came up when I was trying to code an assembler, the line that caused this was- obFW.write(OPTAB.getRecord(Line[1]).value); I solved it by first storing the Record, Returned by 'getRecord()' method, and then using the value of that Record. Maybe the error was caused because the returned object might no longer be in memory, … Continue reading [JAVA] [Solved]>Malformed expression: “(ERROR)”<

Useful Links

Useful Coding and Programming Resources 💻 This post contains a curated list of helpful coding and programming websites, tools, and resources for software developers, computer science students, and programming enthusiasts. 🤓 Online Coding Tutorials 🖥 Programiz - Learn programming languages like C, C++, Python, Java, etc with examples Tutorials Point - Programming tutorials and references … Continue reading Useful Links

[HOW-TO] use Graphics with Dev C++

Download "Graphics.h", "WinBGIm.h", libbgi.a" from hereCopy "Graphics.h" and "WinBGIm.h" to Following locations Dev-Cpp\MinGW64\x86_64-w64-mingw32\include Dev-Cpp\MinGW64\include And copy "libbgi.a" to Following Locations Dev-Cpp\MinGW64\lib Dev-Cpp\MinGW64\x86_64-w64-mingw32\lib Then Go to 'Tools->Compiler Options->General->Linker Command Box' Paste the following -lbgi -lgdi32 -lcomdlg32 -luuid -loleaut32 -lole32 OR if you use project, paste these command into Project options->parameters->linker And then Chose '32-bit Profiling' You … Continue reading [HOW-TO] use Graphics with Dev C++

Problem installing .Net Framework 4 (HRESULT 0xc8000222)

Click Start > Run. Type cmd and press Enter. Please run the following command in the opened window. net stop WuAuServ Click Start > Run Type %windir% and press Enter. In the opened folder, rename the folder SoftwareDistribution to SDold.  Click Start> Run type cmd and press Enter. Please run the following command in the opened … Continue reading Problem installing .Net Framework 4 (HRESULT 0xc8000222)

[Oracle SQL] Change password of a user if you can’t log in as the system admin

I had this strange problem that i didn't change the password for SYS or system, still, i could not get in, i couldn't even connect to 'hr' database, so i searched on the web and found this solution, hope it helps.Enter the following command Command Prompt/shell/Terminal window as appropriate, to login without password: connect / … Continue reading [Oracle SQL] Change password of a user if you can’t log in as the system admin