Forum: Visual Basic 4 / 5 / 6 Jan 3rd, 2009 |
| Replies: 1 Views: 2,123 hello i am doing a program that saves cell values from sheet1 to sheet2 as my database including the value in the drop down.
my program can save the value of the dropdonw to sheet2 ...my problem... |
Forum: Visual Basic 4 / 5 / 6 Sep 13th, 2007 |
| Replies: 0 Views: 1,243 i have three arrays below
l = 0
For k = LBound(Tstk) To UBound(Tstk)
Tstk(k) = stk(l)
l = l + 1
Next k
z = 0 |
Forum: Visual Basic 4 / 5 / 6 Sep 13th, 2007 |
| Replies: 0 Views: 1,145 i have a search program that when searched i will make a receipt, a reciept form will be displayed, the
1st item searched will be displayed on text1(0).text and the quantity also will be displayed... |
Forum: Computer Science Mar 11th, 2007 |
| Replies: 80 Views: 104,110 hello yes i read it but it's quite vague can you help me how to do it step by step? i've been searching the web but can't find site that will help a dummy like me |
Forum: Computer Science Mar 11th, 2007 |
| Replies: 80 Views: 104,110 i cant find any website can you please direct me? |
Forum: Computer Science Mar 11th, 2007 |
| Replies: 80 Views: 104,110 any tutorial or website to help me...i want to get the time complexity of this algo using summation and big o...i really find it difficult to understan...can you help me please solve step by step
... |
Forum: Assembly Feb 1st, 2007 |
| Replies: 0 Views: 3,342 im converting a fibonacci c code to tasm assembly... i've started my code but im having a difficulty in the part where
return fibo(n-1)+fibo(n-2)...please help
the red fonts is where im not... |
Forum: Monitors, Displays and Video Cards Oct 16th, 2006 |
| Replies: 1 Views: 1,921 anyone wants to help its making my eyes ache |
Forum: C Oct 16th, 2006 |
| Replies: 13 Views: 9,134 im sorry guys if i make all of you confuse.... i want it to be round of in the function
because i'll use the returned value for another function
unsigned int CalculatePercentage(int TC,int PC){... |
Forum: Monitors, Displays and Video Cards Oct 15th, 2006 |
| Replies: 1 Views: 1,921 I had replaced my power supply recently because the fan
churning....now my problem is my monitor is shaking or wobbles...what seems to be the problem? |
Forum: C Oct 13th, 2006 |
| Replies: 13 Views: 9,134 okie thanks but how can i round it off to one deciamal place?
for example
(PartialComponent/TotalComponent)*100
90/235=38.3 %
38.3 should be the return value
anyone? i shouldnt be... |
Forum: C Oct 13th, 2006 |
| Replies: 13 Views: 9,134 how will i round off the return value to decimal place with tis function?
unsigned int CalculatePercentage(int TotalComponent, int PartialComponent){
return... |
Forum: C Oct 3rd, 2006 |
| Replies: 6 Views: 1,988 thankls it work :):cheesy: |
Forum: C Oct 2nd, 2006 |
| Replies: 6 Views: 1,988 int locate(nd **head,int num){
nd *p;
p=*head;
while(p!=NULL)
{
p=p->next;
}
if(num==p->x)
return 1;
else |
Forum: C Oct 2nd, 2006 |
| Replies: 6 Views: 1,988 actualy i dont know how to di this ...i tired you code it works :)
how about this one where i want to locate if the linked list is in the lis?
int locate(nd **head,int num){
nd *p;
... |
Forum: C Oct 2nd, 2006 |
| Replies: 6 Views: 1,988 i want to add all the inserted linked list by using this code
but what happens here if i input 15 then 35 =50 but when i input again 30 the sum is 50whats wrong with my code?
int sum(nd... |
Forum: C Oct 2nd, 2006 |
| Replies: 12 Views: 3,137 it works!!! i havent saved my code thtas why it didnt created new fle... i did exactly the code you gave me thanks!!!:cheesy: |
Forum: C Oct 2nd, 2006 |
| Replies: 12 Views: 3,137 none ....no error messgae displayed....when i run the exe... window screen is black then quits...
okie i'll try without the while loop |
Forum: C Oct 2nd, 2006 |
| Replies: 12 Views: 3,137 hello modt2.txt is not created...:sad: |
Forum: C Oct 2nd, 2006 |
| Replies: 12 Views: 3,137 it doesnt create a new file
with this code whats wrong?:
#include <stdio.h>
char spaceOcured;
void copyf(char *fname1, char *fname2){
FILE *fp1,*fp2;
int x;
spaceOcured=0; |
Forum: C Oct 2nd, 2006 |
| Replies: 12 Views: 3,137 i got it i initialize spaceOccured as char
char spaceOcured=0; |
Forum: C Oct 2nd, 2006 |
| Replies: 12 Views: 3,137 i have an error spaceOccured undefined symbol... |
Forum: C Oct 2nd, 2006 |
| Replies: 12 Views: 3,137 im sory the first txt file should have a content of "Have_ _ a nice day" two spaces then i have to save it to the 2nd file and should only have one spcae "Have_a nice day"... |
Forum: C Oct 1st, 2006 |
| Replies: 12 Views: 3,137 Can anyone help me...i have a file modt.txt and i want to save the content in modt2.txt but it seems my code is not working. Moreover,
if i have the content of the 1st file Have a nice day. i want... |
Forum: C Sep 2nd, 2006 |
| Replies: 3 Views: 1,295 |
Forum: C Sep 1st, 2006 |
| Replies: 3 Views: 1,295 Please help can you help me debug my code i cant display the result and the computation for sum is error...
help me please :sad:
#include <stdio.h>
int i,counter;
float sum;
struct... |