Click here to Skip to main content
16,006,378 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Generalusing STL to read LARGE text files ... Pin
Maximilien7-Oct-04 4:17
Maximilien7-Oct-04 4:17 
Generalproblem:dll not found Pin
happycpp7-Oct-04 3:37
happycpp7-Oct-04 3:37 
GeneralRe: problem:dll not found Pin
David Crow7-Oct-04 4:07
David Crow7-Oct-04 4:07 
GeneralRe: problem:dll not found Pin
happycpp7-Oct-04 6:39
happycpp7-Oct-04 6:39 
GeneralRe: problem:dll not found Pin
David Crow7-Oct-04 8:07
David Crow7-Oct-04 8:07 
GeneralRe: problem:dll not found Pin
happycpp7-Oct-04 9:03
happycpp7-Oct-04 9:03 
GeneralRe: problem:dll not found Pin
David Crow7-Oct-04 10:06
David Crow7-Oct-04 10:06 
GeneralRe: problem:dll not found Pin
Blake Miller7-Oct-04 10:52
Blake Miller7-Oct-04 10:52 
This reminds me of MY current problem, where I need to put some functions in a DLL AND dynamically link to my own functions just to call two Microsoft APIs.

I need to know if there are instances of MSDE on a machine.
Using the 'preferred' functions NumInstalledInstances and IsInstanceNameValid.
These are in a static LIB file you link against. That's fine.
But, when you execute them, they need a DLL that is only installed if the machine ALREADY has one or more of their dependent MSDE DLLs.
So, if you want your EXE to load, you can't directly link with these functions, and so you put the functions in a DLL, but you can't statically link with your own DLL either, or you will still end up requiring the MSDE DLLs to load. So, you put the functions in your own DLL (which is statically linked to the Microsoft API), export some functions similar to the 'static' functions from the Microsoft API, and then DYNAMICALLY get the procedure address at runtime of your own two functions after dynamically loading your own DLL.
Yeeeeeehaw! Aint this fun!

GeneralRe: problem:dll not found Pin
8-Oct-04 3:40
suss8-Oct-04 3:40 
GeneralRe: problem:dll not found Pin
Blake Miller8-Oct-04 4:53
Blake Miller8-Oct-04 4:53 
GeneralRe: problem:dll not found Pin
happycpp8-Oct-04 10:55
happycpp8-Oct-04 10:55 
Generalsolved: problem:dll not found Pin
happycpp9-Oct-04 3:27
happycpp9-Oct-04 3:27 
Generalproblem with modeless dialog Pin
balajeedurai7-Oct-04 3:11
balajeedurai7-Oct-04 3:11 
GeneralRe: problem with modeless dialog Pin
toxcct7-Oct-04 3:39
toxcct7-Oct-04 3:39 
GeneralRe: problem with modeless dialog Pin
Niklas L7-Oct-04 5:46
Niklas L7-Oct-04 5:46 
GeneralRe: problem with modeless dialog Pin
balajeedurai7-Oct-04 17:35
balajeedurai7-Oct-04 17:35 
GeneralRe: problem with modeless dialog Pin
Niklas L7-Oct-04 21:39
Niklas L7-Oct-04 21:39 
GeneralResidental Application Pin
Micie7-Oct-04 3:01
Micie7-Oct-04 3:01 
GeneralRe: Residental Application Pin
toxcct7-Oct-04 3:37
toxcct7-Oct-04 3:37 
GeneralRe: Residental Application Pin
Micie7-Oct-04 3:40
Micie7-Oct-04 3:40 
GeneralRe: Residental Application Pin
toxcct7-Oct-04 3:50
toxcct7-Oct-04 3:50 
GeneralRe: Residental Application Pin
Micie7-Oct-04 3:56
Micie7-Oct-04 3:56 
GeneralRe: Residental Application Pin
David Crow7-Oct-04 4:10
David Crow7-Oct-04 4:10 
GeneralRe: Residental Application Pin
Micie7-Oct-04 4:13
Micie7-Oct-04 4:13 
GeneralRe: Residental Application Pin
David Crow7-Oct-04 4:21
David Crow7-Oct-04 4:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.