collisions
What other classes exists for creating more advanced collisions then just rectangle ?
View Article[QUESTION] Drive Letter of Flash Drive
Can I use sysinfo object to determine the drive letter of the flash drive? Thanks for the help.
View ArticleGraph To Show Multiple Y Axis with Different Scale
Hi, I want to display two variables on a graph with Y1=0 to 3 and Y2=500 to 1000 Y3=300 to 2000 scales .,X =1jan to 10jan Is it possible to do with MS CHART control. for reference Please see attached...
View ArticlePassword form in VB.Net
Hi all Is there a specific form in VB.Net for setting up password or you just use a window form and resize it. Thanks
View ArticleXstream error and what DB to use?
Hello, I am writing an application and I am having a bit of a quandry, first off, what type of database should I be using to store the data? There will be potentially upwards of 1000 rows of data or...
View ArticleProblem Getting Graphics to Show
Hi. I'm having trouble getting my graphics to actually show up. As far as I'm aware, this is the only problem. It worked perfectly before I switched to arrays, but alas, I deleted my old graphics...
View Articleoptimizing Caesar cipher analizer
I am new to programming and I made this code to figure out the shift amount to decode a Caesar cipher. The problem isn't that I am not getting errors, it's that it has so many if statements that it...
View ArticleStrange Expression Result
In C, when I have, code lines as int i,c ; i = 5 ; c = ++i + ++i ; it produces output(value of c) as 14, and when I have code lines as int i=5 ; int c = ++i + ++i ; it produces output(value of c) as...
View ArticleWPF list box dynamically
guys I have created the following codes to add stack panel and the picture and the TextBlock in side of it programmatically. The TextBlock which is inside of the stack panel is, getting text from the...
View ArticleRepeating a design. WPF
Okay, so I have a list of information, and I would like to have this information to be represent with labels and a rectangle. The labels will have numbers in, and the rectangle will contain an image...
View ArticleTo prevent possible data loss before loading the designer error
i'm using vb.net 2010 i use custom lib for button shape..every thing was going fine till i decided to change my app framenetwork from 3.5 to 4. then buttons that i have created are not showing any more...
View Articleuniform cost v/s logarithmic cost
can anyone explain me the time complexity of factorial function if we follow RAM model and if we follow logarithmic cost concept. int fact(int N) { j=1; prod=1; while (j<=N) { j=j+1; prod=prod*j; }...
View Articlelooping through elements in pickle
I'm trying to loop through every element in a pickled dat file. The idea is to pickle a list with a name and a score. I'm just trying to load every element without having to manually load each one. I...
View ArticleDo i need to release COM objects if they are NULL
Do i need to release COM objects in Directx11 if they are set to NULL? For example in my code i have //Variables initialization ID3D11Device* d3d11Device = NULL; //in my shutdown function...
View ArticleJava Insertion sort with array
I am having trouble making an insertion sort method. Can someone guide me through the steps Here is my sortingClass /* SortableArrayListWithBubbleSort implements the abstract operation sortSublist...
View ArticleUse StreamReader in VBScript
I know that VBScript loves the File System Object, and I've used it numerous times to read/write files. But now I have the need to open a file using the StreamReader object instead. I need to pass the...
View ArticleSum db of a table to a new table and datacombo problem
Hi, Here's the situation I am in right now (actually, its been 2 weeks) in creating my inventory system. I have 2 forms, one is assigned for my Item_List(frm_ItemList) then the other one is assigned...
View Articlerational numbers class error
import java.io.*; public class rational { private int numerator,denominator; Console con=System.console(); public void set() { System.out.println("yo mahn....put d value f numerator 'n denominator:");...
View ArticleText Box Auto Resize
Ok so i am making a text editor with a rich text box but i want the size of the rich text box to always be the same as the form i have been looking everywhere and cant seem to find an answer.
View Article