Decompiling .luac files
Hi there, So, basically I have one compiled LUA project with file.luac extension. What I want to do is to de-compile it and get the original code. I tried luaDec, unluac and pretty much everything but...
View ArticleUsing variable in place of ChartName
Hi all, Hoping for some pointers / help. I have a C# WinForms application that has four chart controls used to graphically show some analysis results. I have the code working for each graph, however in...
View ArticleTkinter, problem assosiate function to radiobutton
Hi, I'm quite new to python. Trying to write little utility to convert numbers from bin to dec and hexa,and vice versa. I.m stack onradio buttons selection so far. Any ideas guys, how to "ask" def calc...
View ArticleLoad Method
My problem is that it always goes to nothing to load - file is empty! public void Loader(LinkList AccountList) throws IOException { //File AccountsFile = new File("Accounts"); //Scanner keyboard = new...
View ArticleUse a stack to reverse characters of each word in a sentence
I got this to work when just using integers but now I have to use strings and I am completely stumped. I tried putting a whole array in and hoping it will print the words out backwards for a start but...
View ArticleStand Alone Class - Changing Values
I need to change a value in mustang, and I have a couple of questions. Mustang is set to the default constructor, and I need to change all of the values. (color, model, horsePower, and doors) Can I...
View ArticleTracing lines with mouse movement
Hello Everyone, I decided to make a random problem to understand new ideas a little better. I decided to make a fun drawing program, with which I'm only drawing rectangles at the moment. The code is...
View ArticleHow to obtain (as input) DTMF's from a tone dial telephone
I am trying to understand the DTMF (Dual Tone Multiple Frequency) used in touch telephone dialing and whether a program could be written to either output the number dialed (after the DTMF for the...
View ArticleOutput Time from a Whole Number Input
I need help writing a Java program that takes as input a length of time measured in seconds. The program then outputs the same length as the corresponding number of hours, minutes, and seconds. For...
View Articlewrite conceptual framework before start make a program?
Do anyone of you (app programmer, game programmer, web programmer etc) written down your program conceptual framework?? The Conceptual framework I meant was a sketch of model or anything that describe...
View Articlearray and listview
Can somebuddy explain me what is the difference betwween listview and array by giving some example..thanks
View Articleconvert to binary using stack C++
I am writing a small program to convert a number into base 2/8/16. The requirements are to create the stack without using class, just use an array, a pointer to hold subscript and the stack will have...
View ArticleFinding elapsed time in minutes
Hello, I am trying to find the elapsed time between two times that are in a specific format. They are in HHMM format. NOTE: I am not trying to find the elapsed time of my program running. I found tons...
View ArticleQuick recursive problem(I listed the answers)
I'm have a problem understanding how we are getting the answer written below. Can someone please explain the steps to me please? I'm mainly confused as to which steps occur, and also what happens at...
View Articlecounting coparison in quicksort
Hi in this program i have to count the no of comparison made in quicksort. i am able to quicksort the array. but when i am saving the value of comparison in count and then passing this value to...
View ArticleMaking Linechart, Grid not aligned with points
Hi everyone. I'm in the making of a LineChart that only requires integer's as data-points. The only think that won't work, it the grid in the background. The grid is suppose to be draw so that it is...
View Articlemy query is i written one program in that print statement not printing
package program.java.scjp; public class Animal1 { String name; public void eat() { System.out.println("generic eat method of animal"); } public void printYourself(String n) { name=n;...
View ArticleHow does paintComponent() get called by JFrame?
I'm working through the Java "Performing custom painting" tutorial My link I've noticed that two methods called paintComponent and getPreferredSize, the former of which accepts a Graphics object as a...
View ArticleI Developed one html form and now i want to send useing php
<html> <head> <title>table1</title> <script language="javascript" type="text/javascript"> function check() { if(document.getElementById("Calling Date1").value == "") {...
View ArticleDragN'Drop don't get properties
Hi, I have the following code: button1.MouseDown += new MouseEventHandler(pbox_MouseDown); button1.DragOver += new DragEventHandler(pbox_DragOver); void pbox_MouseDown(object sender, MouseEventArgs e)...
View Article