User Profile

Collapse

Profile Sidebar

Collapse
jothivel
jothivel
Last Activity: Jun 4 '15, 03:59 PM
Joined: Mar 14 '12
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • jothivel
    replied to Embedding PDF document in MFC application
    in C
    Thanks for your response.

    But actually I dont want to read the pdf file content and put back to dialog. I would like to know any existing library or activeX control are available to do this job?

    Thanks.
    See more | Go to post

    Leave a comment:


  • jothivel
    started a topic Embedding PDF document in MFC application
    in C

    Embedding PDF document in MFC application

    Hi Guys,

    As per my requirement, I need to embed the PDF file inside MFC dialog. I have one push button, Once I click the button, one predefined pdf file has to embed inside the MFC dialog with password protection. Please anyone tell me how to embedded the PDF file inside MFC dialog.

    Thanks.
    See more | Go to post

  • jothivel
    started a topic Vc++ - mfc
    in C

    Vc++ - mfc

    Hi Guys,

    I have developed the application in VC6.0 in my windows XP machine. Now I am porting into my new windows 7 machine by converted into Visual Studio 2008. Now the problem when I am opening dialog it showing the error "ActiveX controls could not be instantiated. Reinstall or register the controls and try again” message when viewing Dialog with some error in {CA8A9780-280D-11CF-A24D-444553540000}. How to solve this problem...
    See more | Go to post

  • jothivel
    replied to How to create 4 dimensional array
    in C
    I can use database engine but it will take more time to insert data and retrieve back again.But my requirement is around I will take around 300MB of data in buffer then I will process and convert into double values, this size will be around 3.5GB, then I have to write into file. But if i use database everytime i have to insert then at the end i have to read back from database then I have to write into the file.
    See more | Go to post

    Leave a comment:


  • jothivel
    replied to How to create 4 dimensional array
    in C
    Hi Banfa,

    1) If i increase the virtual memory whether I can push much element.
    2) More over I am not aware of memory mapped file. Please could you give some example to achieve.
    See more | Go to post

    Leave a comment:


  • jothivel
    replied to How to create 4 dimensional array
    in C
    Hi,
    I need to create the double vector of
    500*32*16*<un_k nownsize>..The final element i will push in runtime...
    See more | Go to post

    Leave a comment:


  • jothivel
    replied to How to create 4 dimensional array
    in C
    Hi, I could able to store in my double vector is = 536870911..
    But I need more than this index.
    See more | Go to post

    Leave a comment:


  • jothivel
    replied to How to create 4 dimensional array
    in C
    Hi,
    Thanks for your answer.

    double array[500][25][10][<NOT FIXED>].
    I am achieving this using vector(vector(v ector(vector(do uble)))) dBuffer(....);
    As of now I am using vector[500][25][10][UnknownSize].
    UnknownSize will be decided on run time. It is working fine.
    But I am facing 2 problems.
    (i) I am storing 4th dimenstion size is more than
    vector[0][0][0].max_size()
    (ii) Storing...
    See more | Go to post

    Leave a comment:


  • jothivel
    replied to How to create 4 dimensional array
    in C
    Hi,
    Thanks for your reply.
    Can you some example or link to create the own array on the heap?
    See more | Go to post

    Leave a comment:


  • jothivel
    started a topic How to create 4 dimensional array
    in C

    How to create 4 dimensional array

    Hi,
    I want to create 4 dimensional array, in that first three dimenstional are fixed size and the final index will be on 0 to N-numbers.
    For eg, double array[500][25][10][<NOT FIXED>].. So I cant create statically, because the index size are more. Also I have tried 4 dimenstional vector, but its giving 2 problem.
    (i) I am storing 4th dimenstion size is more than vector[0][0][0].max_size()
    (ii) Storing and Retrieving...
    See more | Go to post

  • jothivel
    replied to Storing and Retrieving a large amount of data
    in C
    Hi,

    Thanks for your response.
    What I am trying to say is, the data storing in vector is not sequential. I will access any index in the vector at any time.
    In between some element can be blank also. Though my vector size is more, I will store the data some index only, some index can be blank. So i cant read and write directly like double[100000]. When I am storing data in all the index, that time we can use this concept. I...
    See more | Go to post

    Leave a comment:


  • jothivel
    started a topic Storing and Retrieving a large amount of data
    in C

    Storing and Retrieving a large amount of data

    Hi Friends,

    I have to store large amount of data and retrieve the same data then write into file in C++.
    Currently I am using vector to store and retrieve. But vector is taking more time to store and retrieve the element. Is any other best data structure to store and retrieve large amount of data in unordered way?
    Please suggest me the best solution to reduce the time.

    Example code:
    Code:
    int I1 = 700,I2 = 32,
    ...
    See more | Go to post
    Last edited by Rabbit; Nov 28 '12, 05:52 PM. Reason: Please use code tags when posting code.
No activity results to display
Show More
Working...