Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by mdktindia

  1. mdktindia

    Loop through controls in Datarepeater

    Actually, I do not know about what the function does, but in programming point of view, there is a problem with the loop itself for .ActiveRow = 1 to .VisibleRows if(.RepeatedControl.IsValid)then IsValid = false exit function end if next .activerow is a property...
  2. mdktindia

    c++ compiler pls!

    It means that the directory path to include files is not sepcified correctly. It may be due to you've copied the C++ compiler to another drive and forgotten to correct the path. In the menu bar, choose Option -> Directory... See whether the path to includes files is correct or not. Hope this...
  3. mdktindia

    Passing Dates

    Can you please state the problem more clearly?
  4. mdktindia

    Feathering- PhotoShop 5 vs. PhotoDeluxe

    one way you can do is 1) select the area that you want to do feather 2) choose Feather and enter the number of pixels 3) press CTRL+X (or +C) 4) Open a new window, and paste Hope this helps mdktindia
  5. mdktindia

    Tower of Hanoi.

    let me suppose that 3 pegs are namely S : source T: temp D: destination the algorithm is that for moving n disk from S to D you have to move n-1 disks (how to move will discuss now) from S to T and then move 1 disk left from S to D, finally move n-1 disks from temp to D. but how to move n-1...
  6. mdktindia

    Adding 2 2-D arrays to make a third array

    to cjones: you'd better follow rbobbitt instruction, i'll give you a bit hint you know how to input an array? the same structure of for loop but instead of inputing values, you just do the evaluation regards,
  7. mdktindia

    Transparent image - white pixilation

    you are most welcome. i'm still learning cheers,
  8. mdktindia

    Adding 2 2-D arrays to make a third array

    do you mean addition of 2 matrices? or concat 2-d arrays making 1-d array?
  9. mdktindia

    Transparent image - white pixilation

    if you make a transparent image, only thing you can do is to make the picture under gif format, and then go to : file > export > gift 89A to change the current picture to gif format, you go to: image > color > indexed color if your picture is jpg or psd format, it's checked in RGB color when...
  10. mdktindia

    help with an if statement!!!

    one more i wanna add you should put the brackets for each expression if ( ((y % 3) != 0) || (y != 1) || (y != -1) ) hope help
  11. mdktindia

    reversing character arrays

    the simpliest... void PrintReverse(char *s) { int i,l; l = strlen(s); for (i=l-1; i>=0; i--) putch(s[i]); printf("\n"); return; } void main() { char line[100][100]; char ch; int i,n=0; printf("Enter a set of sentence:\n")...
  12. mdktindia

    command prompt on boot up

    go thru the some previous threads, discussed about ms dos prompt in win Me Hope help
  13. mdktindia

    How do I read a variable number of integers from the command line?

    that is technical manner, you can try out to write your own function to seperate! any way
  14. mdktindia

    How do I read a variable number of integers from the command line?

    you can scanf the line as a string then you seperate these integer number from the string hope help
  15. mdktindia

    How Do I Alleviate Stack Overflow?

    recurive means inside the function you call itself.. check your program, maybe you are using but you don't know.. or are you trying to use q-sort in your program??? if there is, check the function because, recursive applied for q-sort on stdlib.h or search.h qsort function is there, you can go...

Part and Inventory Search

Back
Top