Clearing parts of a RichTextBox
Hi there, I've been busy writing a small and simple HTML-Editor for myself. I used a TabControl with 2 tabs (Editor and Webpage) and in the Editor-tab I used a RichTextBox. In the webpage-tab I used a...
View Articlecreate workflow programme
Hello all, Can anyone point me in the right direction on this topic. i'm trying to think of a way to write a basic programme that allows me to create flowcharts in python. i'd preferably like a simply...
View ArticleQuestion about inserting new line into string
Hi, I'm having trouble with inserting new line into a string. I must change every "." character in a string for a new line. I have tried many ways. One of them was this: for (int i = 0; i <...
View ArticleReading from a text file into list then writing back to list w/ CGI
I have a cgi script that i want the user to type in a keyword in. There is a file keywords.txt that contains keywords. The program will open that file and make it into a list. Then, it should check to...
View Articlea timmer ?
Hello everyone, i want to have in my program something that will count some random amount of time for example between 10 and 20 minutes and once this time is over to stop the curent flow of the program...
View ArticleAdding 2 values that together as decimals in c# asp.net
I have a value that I have got from gridview. I want to add another value and get a total. I am having trouble getting both to total. The best I could do was "£10 + £2700 = £10£2700" not £2010 which is...
View ArticleImportance of static object in a class and how they are different from
#include "B.h" class A { public : A() { s_b = new B(); b = new B(); } static B s_b ; B b ; }; #include<iostream> using namespace std ; #include "A.h" int main() { cout<<"hello"; } In my...
View ArticleProxy in Metro App
How I can set proxy(for webview) in metro app(Visual Basic). On Windows 7 I used this but in Windows 8 it don't working... Please help me
View ArticleRepaint in recursion
I am trying to call repaint inside a recursion method but it is only actually painting once at the end. Is there a way to paint multiple times inside a recursion method? public void solveHanoi(int...
View ArticleHang man by using functions
I have to make a hangman program using functions. I've started but I have a logic error or something in my code. When I run it and it asks me for the letter guess, I enter it and it says That's right...
View ArticleMULTIPLE COMBO BOX!
HI there. im new to vb6. i have a question on how to create 3 combobox in array. 1st combobox will choose 2 option. then from the 1st combobox need to chose another 2 different options. and the third...
View ArticleIs it possible to combine php and visual basic in developing website?
I saw one time an online website which has forms like the ones made in visual basic, so I thought that visual basic apps can be used online. I had little experiences programming with vb6 standalone...
View ArticleWhat will this output be
What will this output be assuming the arrays have been filled with some integers for (int i =2; i < values.length; i++) { int sum= values [i+1] + values[i-2]; System.out.print(sum+ " "); }
View ArticleContacts List program
I have this rather complex program that creates a GUI and retrieves the users contact information. He/she can store multiple aspects of a particular contact's information, which utilizes a custom...
View Articlehow to automatically set the text of labels in vb.net
i have 10 labels and 10 textboxes in my form . i am trying to set the text of the labels and textbox using the datagridview coloumns i have tried the code below but it is setting the text only for the...
View ArticleAdd JPanel to JFrame ( Error ) Help please
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package team.rakkstar.application.form; import javax.swing.JFrame; import javax.swing.JLabel; import...
View ArticleConcorde Tsp solver
Hello every one , I don't know in which category should i post this but Concorde tsp solver is written in C so here i am posting here . I would like to know if any of you has experience with Concorde...
View ArticleQuestion about how Java allocates memory and manages it
I am wondering if someone can clarify how Java allocates memory and manages it to run programs? I know java allocates memory in the heap. When objects are no longer used the Java runtime employs a...
View Articlestrcmp problem
Hey all I am having a problem with this bit of code if someone would like to help! The problem is it will crash when the last names are the same. Any help on this? bool LessThanByName( const Passenger...
View Articletrouble calling C++ functions
I wrote a small toy kernel in C++, and a small graphics library. now I wanted to call this function from assembly, but that doesn't really work out. I can compile the cpp en asm files into object code,...
View Article