Opacity Property and fade out effect in vb.net
I want to make fade out effect for label but it does not have any opacity property, so how can I achieve the animation or how can I create a Property for opacity
View ArticleMemory leak by a BufferedWriter thread?
Does a thread of a BufferedWriter causes memory leak? For example, every time you execute a method, it creates a new BufferedWriter and it starts a new thread every time. What I'm ecountering is, after...
View ArticleNeed Help Deleting A File, and Something Else
Ok, I'm currently in programming 1 in high school so don't make fun of my knowledge of vb.net. Ok, so first of all, this isn't for an assignment or anything like that. I need help deleting a file when...
View ArticleCan one Object "Listen" to another Object's "State"
I'm not entirely sure the topic is that descriptive so here comes a particularly lengthy explanation. Problem setup A 4 x 4 GridLayout arrangement of JButtons within a JPanel. The buttons each have a...
View ArticleVoting Script
Hey guys, i wanna design a website for a client which requires them to vote under several categories.... I have searched for a lot of scripts including limesurvey, askpeople, actionpoll etc but none of...
View Articlesplitting up a string
I am very lost on this one... problem: I need to convert a string to lists of characters, split them based on delimiters, and convert back. I also need locally defined functions the function call would...
View Article[VB.net+ADO.net]how can combobox 1 control the result of combobox2
dear my question about combo box in adoo.net via vb.net I have Access database contain 3 tables for University colleges and its departments the first tables include the name of college (college of...
View ArticleCreate an Account Program Project
I know I'm not supposed to ask for code and that's not what I intend to do. I haven't actually gotten anywhere with this, but I really want to! Can anyone give me parsels of code/tips for doing this? I...
View ArticleDetermining if a number is prime!
def isprime(n): n=abs(int(n)) if n<2: return False elif n==2: return True for x in range(3,int(n**0.5)+1,2): if n % x == 0: return False return True def main(): number=int(input("Please enter a...
View ArticleProblem parsing values
i have a small problem with my script i took a abit of source code from php.net its to record the users browser and os so i can record what browsers are mainly being used. now what im wanting to do is...
View ArticleVB 2010 Express - Choosing an array value NOT chosen previously
I'm using Visual Basic 2010 Express. Okay, here's my issue. I'm making a program that encrypts text so that my friends and I can mess around with secret messages in school (yeah, it's sad, but I think...
View ArticleHaving problems with reading a file and significant digits.
#include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX 10001 struct integer { int* digits; int size; }; struct integer* add(struct integer* one, struct integer *two);...
View ArticleHow to Handle This Exception
Dear Friends I am trying to use EXCEPTION HANDLING for the first time. I have used the following code in my program: Dim checkvalue As Boolean = False Try checkvalue = SaveImOrder() checkvalue =...
View ArticleC++ char* problem: changing the input changes the entire linked list
//main.cpp #include "code.h" 1 int main (void){ 2 3 List *obj = new List(); 4 char *input = new char[20]; 5 int option = 0; 6 bool caseBool = true; 7 8 while (caseBool != false){ 9 10 cout <<...
View ArticleRead CSV file, Vector<Vector
I have to read the following CSVdata into vector of vectors Anna 2,4, 4 xx, xx, xx, xx 100 I have the following function to red the data in Header #include <iostream> #include <fstream>...
View Articletrying to make a function that returns average of an array
I feel like i'm doing the actual function right but i'm not sure how to actually call it to see if it is right I keep getting an error on the call line. #include <stdio.h> #include...
View ArticleRemoving From JPanel
Hi. I was wondering if there's any method to remove everything from a JPanel without knowing specifically what's in that JPanel. If not, is there a way to detect what's inside that JPanel? Potentially...
View ArticleJava Applet in IE9 "NOT" Working.
Hello, i don't know if i am the right section of the forum the page this topic. Anyways, I'm using Java7u11 but when i open my webpage file and i call the applet using Javascript it only display a...
View ArticleWhy I can't connect to database?
Here is my code, and when I connect to database it shows me the message box that I'm unable to connect to database. Imports System.Data.OleDb Public Class registration_form Dim conn As OleDbConnection...
View ArticlePHP Function works on one site but not another
Okay so I recently developed a wp childtheme for a website and in doing so I made a small function to grab the latest tweets: <?php //get tweets function getTwitterStatus($userid, $count){ echo...
View Article