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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Jcan
  • Order by date
  1. Jcan

    Display the current record ONLY

    Hi, can anyone tell me how to display ONLY the current record being shown on a form instead of showing all records ? Thanks
  2. Jcan

    COM+ componont is unable to be run twice

    Hi folks, once again i got myself caught in the web of COM. I have a COM+ dll component which works fine but if i close the application and try to restart the application with the custom component it crashes. any ideas would be really helpful. thanks much. Jcan
  3. Jcan

    Unloading COM DLL for outlook addin

    Thank you for your help. it works great !
  4. Jcan

    Unloading COM DLL for outlook addin

    Hello everyone, can anyone tell me how to shutdown a COM addin created for outlook? Even after exiting the Outlook app. the Addin is still in memory. Thanks Jcan
  5. Jcan

    Integrating VC++ with outlook

    Hi everyone. I just got a new project to add a menu and some options to Outlook and create a Com DLL to do it. I have a very basic question- where do i start ? (trying not to panic) At least if there is anyone who knows how to add basic Mail support to a VC++ application I will take it from...
  6. Jcan

    Get the row count for multiple columns in Excel

    Hi everyone, i have a small problem. I wish to populate two combo boxes from two lists in the (A) and (B) column in excel. I can get the row count for column A but I can't get seem to get the correct row count for the second column. My statement look like this: rowACount =...
  7. Jcan

    Stepping through a column in excel VBA

    Hi, how can i step through an excel column using VBA without going through the thousands of empty cells in which there is no data? Thanks a latte Jcan
  8. Jcan

    Access 2002 and linked tables

    Hi everyone, I have developed a system using Access 97. I plan to upgrade to XP so i have XP setup on a pc, converted my Access 97 databases to 2002 (copies of course) and I'm ready to start testing. I notice however, that i can't re-create my MDE's as it's grayed out. I get the feeling there...
  9. Jcan

    Installing Office XP with Office 97

    Hi everyone, I am an application specialist at a small company and we are planning to deploy Office XP on a few pc's for some clients. The problem is there is an application on those pc's that were developed in Access 97. How safe is it to upgrade Office to XP or should i try to install both...
  10. Jcan

    can't get access to data

    works like a charm Thanks guys,
  11. Jcan

    can't get access to data

    Hi fellow, I have a combo box on a form and when the item is not in the list of selected items I open a data entry form for them to continue entering the new item info. My problem is I can't get the text the user entered on the previous form. I call the form passing the "NewData" text...
  12. Jcan

    Access question

    Hi fellows, I have a question... I am working in Access2000 with a database of over 300000 records. The problem is speed. This database is the slowest thing that ever sat on a pc. In Oracle you can split a table into an index and data separately so that searches are faster. Is there anyway to...
  13. Jcan

    DynamicArray vs LinkedList

    In my opinion considering the speed of pc's these days searching a list or a queue in STL is pretty fast even though dynamic lists are faster. The question is how fast do you want to be and is the difference really obvious?
  14. Jcan

    Deleting items from a linked list...

    One way to avoid all these potential problems is to use the STL (Standard Template Library). There are predefined classes to take care of all the linked list nightmares eg. list.h, deque.h, vector.h and more. a simple example of a linked list is as follows: You can check out www.cprogramming.com...
  15. Jcan

    Starting Out,

    Visual C++ is definitely the way to go. Good luck
  16. Jcan

    CFileDialog::GetFolderPath

    let me know if this works
  17. Jcan

    CFileDialog::GetFolderPath

    Try using GetPathName() instead of GetFolderPath() Here is an example.... CString strFilter = "Bitmap Files (*.bmp)|*.bmp|Jpeg Files(*.jpg)|*.jpg||"; CFileDialog fDlg (TRUE,NULL,NULL,OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT,strFilter); if (fDlg.DoModal() == IDOK) { CString m_filepath =...
  18. Jcan

    #define

    What Ankon said is right.
  19. Jcan

    Reading and writing from external files

    Sounds like something you have to hard code. Maybe read in each line into a string then check each character. If there are more than three periods in a line then check how far apart they are. If they are three characters apart then you have one IP address and so on.... Its a bit tedious but if...
  20. Jcan

    Timing question

    Try Sleep (int) where int represents time in milliseconds.

Part and Inventory Search

Back
Top