make a simple word factory in vb 10, is it possible?
I am beginner in vb 10 and I planned to create a game in vb which is word factory. but i don't know where to start. the only flow that i think is there should be a dictionary text file. then in vb from...
View Articlejava create component can not appear
I have this code here: import java.awt.Graphics; import java.awt.Graphics2D; import javax.swing.JComponent; /** This component draws two car shapes. */ public class CarComponent extends JComponent {...
View ArticleMIPS beginner exercise question
Hello! I'm working my way through a MIPS asm tutorial at the moment, but there are no solutions to the exercises. I also have a little trouble understanding the questions, I don't know if it is my...
View ArticleIs my idea even possible?
Hello, not sure if this is even the right place after reading the dos and donts but im stumped and could do with a bit of guidance /> Id like to make a "simple webapp" for a Golf Scoring card, User...
View ArticleJava, seperate numbers from words in a string
I've got a text file that looks a bit like this 1 John Johnson 1245 2 Jack Jackson 4523 3 Peter Peterson 2356 ..................... 1 column - id, 2 - name, 3 - last name 4 - salary I need to read the...
View ArticleCaesar cipher code explanation
Hi I need to write a caeser cipher program in c and i came across an example that i did not really understand. example: #include <stdio.h> #include <conio.h> #include <string> int...
View ArticleMaking an Inventory Management Program
#include <string> #include <stdio.h> #include <iostream> #include <fstream> using namespace std; int main() { struct Inventory{ string itemDes; int qOnHand; double wSaleCost;...
View ArticleTake Snapshot amendment ؟
Take Snapshot amendment ØŸ I've got a tool AxWindowsMediaPlayer1 WebBrowser1 This code Snapshot Tool AxWindowsMediaPlayer1 Dim saveFile As String = path & ".jpg" Dim cropSize As Size =...
View ArticleTimer error
I have this code here: import javax.swing.JComponent; import java.awt.Graphics; import java.awt.Graphics2D; import java.util.ArrayList; public CarSet extends JComponent { private ArrayList<Car>...
View ArticleRemove unwanted space from string(C# begginer)
Hello I have this method: public static string Puzzle(int upperBound) { string result = " "; for (int i = upperBound; i >=1; i--) { result = i*i+ " " + result; } return result; } for upperBound = 7;...
View ArticleUser starters pokemon.
Hi friends. I have made a new pokemon RPG game but i want to sho user 6 starters in 6slots but i have program a script for user profile in RPG but something error in the script i have click on the page...
View ArticleHow do you stop a WebBrowser object in WPF?
How do you stop a WebBrowser object in WPF? The stop method is not an option becasue that is only available in windows forms....
View ArticleReads each line from the file and supply it to the employee function
12347 10000 secretary James Harrison 12348 20000 secretary Jade Powell 12341 40000 consultant Adam Johnson Hi, lets just say that the text above is a text file. I would like to open the file whose name...
View ArticleError with Arithmetic Operations on Fractions (multiply,divide,add,sub
I've been working on an assingment that requires us to get fractions to multiply,divide,subtract, and add. I'm pretty that part of my code works, but when I go to run it I get an error that I don't...
View ArticleGuys, I have a problem, do not banned me again.
Please guys, it is very near. I almost finish my program so please do not kick me away any mores ok? I will try to behave ok? Forgive my last sins ok? I thought I was posting correctly ok? I am Tawi...
View Articleno idea for a simple c code
I am doing a simple c coding for print all the possible combination of characters "y,t,a,r,m,h,e" without repeat any character. I have been print for "1,2,3,4,5" but have not any idea for characters...
View ArticleFind element in webbrowser based on src
Hey, so again i have one of my many webbrowser control questions. This time the question is, if i have a webpage source code that looks like such: <img src="<img url>" width="62" height="20"...
View ArticleExecuteNonQuery Error vb2010 ms access
Hello I'm new to VIsual Studio 2010, i just study how to made a program that connect to my database to ms access 2007 but at my save button code,, got error executenonquery this is my code Private Sub...
View Articlewhen implemented my bubble sort outputs garbage and not the list
i need the list of numbers to end up being the output and instead it outputs something like this [I@7f1bfcfc import java.util.Scanner; public class BubbleSort { public static void main(String[] args) {...
View ArticleFunction to create new objects of a class?
Hello everyone, just wondering how to go about writing a function that takes string arguments and returns an object of a class, for example: class Person(object): def __init__(self,firstName,lastName):...
View Article