Documents And Specifications
Language
Any
Platform
Any
License
Any
: : in a class that implements an interface known by the main program.
:
: Perhaps the VB2005 equivalent of CreateObject?
: Like I said, I can't look into it right now, but try and find a
:...
: When I run the batch file with the shell command it does not execute
: the script correctly. Here is what I have in the script, I am trying
: to run other exe files with paramters.
: :
:...
When I run the batch file with the shell command it does not execute the script correctly. Here is what I have in the script, I am trying to run other exe files with paramters.
@echo off
echo...
: in a class that implements an interface known by the main program.
Perhaps the VB2005 equivalent of CreateObject?
Like I said, I can't look into it right now, but try and find a similar...
: 300... talking about overkill ;)
only one of them is used at any given time, the user can "select" which one.
: Is there no way you can do with one DLL and a data file? :P
well, I could but in...
: Hi!
:
: I have a main program and several (from 3 to 300) little dll's.
300... talking about overkill ;)
Is there no way you can do with one DLL and a data file? :P
:The main program...
: You need to use OpenProcess() instead of ShellExecute() for that.
: Then you can use the handle to verify the progress of the child
: process.
is the "openprocess" parameters the same?...
Hi!
I have a main program and several (from 3 to 300) little dll's. The main program has to call about 5 of the dll's functions. At devel time I know the names and parameters of the functions, but...
: : Dear All,
: :
: : I have written a code to communicate from HOST (PC) to the target
: : (RABBIT processor) through Ethernet.
: :
: : Now I need to make slight modification where in I...
: Dear All,
:
: I have written a code to communicate from HOST (PC) to the target
: (RABBIT processor) through Ethernet.
:
: Now I need to make slight modification where in I have to...
Yes, you can use MSXML. You only have to create the document object and set your string as its text (or load it from a stream object). Then you can navigate the nodes tree. If you have got the...
: This would appear to work for == and !=, but I would not be able to
: do:
: : BitMap temp;
:
: temp.allocateBits(33);
:
: temp = 1: I would have to change it to something like:
: :...
: Well, I still advise you do it the way bilderbikkel (using the int
: rather than the BitMap as a return).
: It's the 'proper' way of implementing it.
:
: It'll also be faster. You say you...
Well, I still advise you do it the way bilderbikkel (using the int rather than the BitMap as a return).
It's the 'proper' way of implementing it.
It'll also be faster. You say you can't do it...
: : Thanks, I'll try it at home this evening.
: :
: : I don't know if there is a way to do a dll without forcing the user
: : to find the header file? Just a dll? when we load the library, why...
: I'm having some quirky runtime issues with some code I've got.
:
: The Code:: #include
:
: #include "../Bit/BitMap.h"
: #include "../Timer.h"
:
: using namespace std;
:
: int main()...
I'm having some quirky runtime issues with some code I've got.
The Code:#include
#include "../Bit/BitMap.h"
#include "../Timer.h"
using namespace std;
int main()
{
Timer loop;...
Hello i'm new to programming
i am trying to learn how to display a bitmap on a window using the GDI.
i couldn't find any decent tutorials with code that worked on the net.
so i decided to...
: Public Class Form1
:
: Dim gr As Graphics
: Dim bitmap As Bitmap
: Dim N, Ux, Uy, x, i, j, k, u, y As Single
: Private Sub Form1_Load(ByVal sender As System.Object, ByVal e...
I'm sorry about the bad code above, it was a cut-and-paste error.
Here is my complete code. It does what it supposed to, but I was wondering if there is anyway to make it faster by Refreshing the...