Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~325 People Reached
Favorite Tags
Member Avatar for genesistr

hi, I have mfc c++ activeX object and javascript code to use that object. there are 2 types of callback in my activeX object. First: triggered itself(my activeX object) second: triggered via external dll. My javascript code can catch the first callback but although the message arrives to the FireEvent …

0
29
Member Avatar for genesistr

hi, I have two 3rd party unmanaged c++ dll and one C++ project which uses these dlls. In my asp.net project i added c++ project as referance but in runtime it fails with that error: Exception from HRESULT: 0x8007007E... Visual studio puts c++ project's dll into /bin folder auto. Even …

0
44
Member Avatar for genesistr

[CODE]File.prototype.OpenAudioFile = function(dPath) { var rem = document.createElement("div") rem.name = "divv"; rem.id = "divId"; rem.innerHTML = '<embed src="' + dPath + '" autostart="false" name="' + dPath + '"></embed>'; document.body.appendChild(rem); } [/CODE] I'm using the way above to solve my sound problem but when i attach div object to document sound …

Member Avatar for Troy III
0
48
Member Avatar for genesistr

Hi, I have timer class and some classes use timer. but when i come back from timer with callback function, i can see this. properties. [CODE] function Timer(dName, dCallback){ this.timer = null; this.name = dName; this.isRunning = false; this.interval = 50; this.callback = dCallback; } Timer.prototype.Start = function() { this.timer …

0
70
Member Avatar for genesistr

Hi, I have Image.js and Main.js files. I create image object like test = new Image(...); and it can be seen on screen but when i try to do call Move method like test.Move(x,y); it crashes. Is there anyway to do that? My code : main.js: [code=JavaScript]var objBall = new …

Member Avatar for Airshow
0
134