Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
A

ajisthekingofpop

@ajisthekingofpop
About
Posts
17
Topics
5
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • AJAX using DIV throws a runtime error
    A ajisthekingofpop

    there is a < div > tag but it disappeared on posting. Its in the table cell.

    Web Development help hardware

  • AJAX using DIV throws a runtime error
    A ajisthekingofpop

    the Jscript code is: function GetXmlHttpObject() { var xmlHttp=null; try { // Firefox, Opera 8.0+, Safari xmlHttp=new XMLHttpRequest(); } catch (e) { // Internet Explorer try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } } return xmlHttp; } function stateChanged() { if (xmlHttp.readyState==4) { alert('got data'); //document.writeln(xmlHttp.responseText); var item = document.getElementById("cont"); //alert(item); var res = xmlHttp.responseText; item.innerHTML = res; //.innerHTML=; } } function loadArticle(id){ //alert('id is ' + id); xmlHttp=GetXmlHttpObject(); if (xmlHttp==null) { alert ("Your browser does not support AJAX!"); return; } var url="articles.aspx"; url=url+"?id="+id; xmlHttp.onreadystatechange=stateChanged; xmlHttp.open("GET",url,true); xmlHttp.send(null); } the htnl sits klike this

    o.k assigning just "hello" to the innerHTML of cont works fine, but try and assign responseText and I getthe runtime error.

    Web Development help hardware

  • AJAX using DIV throws a runtime error
    A ajisthekingofpop

    I have a div which is embedded inside a table. I can manually find the element using getByElementId("mytag"); I can even statically assign innerHTML, but my problem occurs when i try and assign it the responsetext from a XMLHTTP Object. If the DIV tag exists out the table on its own, then everything workds fine, its just when the div is embedded inside a table or even a form. What am i doing wrong, someone please help. I can document.write the responseText and its correct, I can even statically assign 'hello' to the innerHTML of my tag and all works. Any suggestions would be appreciated.

    Web Development help hardware

  • Product Activation and Licensing
    A ajisthekingofpop

    hey mike. thanks for the suggestion but it was my first port of call.

    IT & Infrastructure csharp

  • Product Activation and Licensing
    A ajisthekingofpop

    I am looking for a cost effective, software licensing and activation system which can easily be integrated within a .NET software package. I am looking for systems which automate activation either over the internet or/and over an automated phone system.

    IT & Infrastructure csharp

  • Obfuscator : which one is best?
    A ajisthekingofpop

    ok. thanks. ive had a good look at that document before. What Obfuscators do you guys use?

    C# csharp question

  • Obfuscator : which one is best?
    A ajisthekingofpop

    Which C#/.NET Obfuscator is best? Price and feature wise? I wise looking at the professional edition of dotfuscator but the price for the professional one is just silly. Any recommendations would be welcome.

    C# csharp question

  • VC++ Linking error to do with += Operator
    A ajisthekingofpop

    I have created a class with the following defined: friend CStrTemp& operator += ( CStrTemp& i, const CStrTemp& s ); and then: template CStrTemp& operator += ( CStrTemp& i, const CStrTemp& s ) { ///code and return } Everything compiled but when it tries to create the executable it throws up the followinf error: CString.obj : error LNK2019: unresolved external symbol "class CStrTemp & __cdecl operator+=(class CStrTemp &,class CStrTemp const &)" (??Y@YAAAV?$CStrTemp@D@@AAV0@ABV0@@Z) referenced in function "class CString __cdecl operator+(char,class CString const &)" (??H@YA?AVCString@@DABV0@@Z) Any help would be appreciated as I just cannot understand why it is not working.

    C / C++ / MFC help c++ question

  • Is real-time programming can be done with C# & .Net?
    A ajisthekingofpop

    No just for the fact its an Enterprise Framework that potentially generated MSIL and CLR byte-code thats run on some type of 'virtual machine' runtime. Its like Java all over again but imho alot cleaner.

    Work Issues csharp dotnet visual-studio help question

  • Launching Device Manager or manipulating device manager from C++
    A ajisthekingofpop

    Thanks David. :(

    C / C++ / MFC c++ json help question

  • Launching Device Manager or manipulating device manager from C++
    A ajisthekingofpop

    No. They are custom drivers that have been written for our specific hardware. I have looked high and low for information on it. Im sure its possible but MSDN doesn't have all that much information. The Linux world makes it so much easier :(

    C / C++ / MFC c++ json help question

  • How to vopy data pointed by a "Void* " pointer to "CString" object
    A ajisthekingofpop

    void* pVoid = 0; CString csData; pVoid = new BYTE(100); I would do the following: memcpy(&csData, pVoid, 100); //I would use a #define for the 100 tho because it make sit easier to understand Now this has copied the data from one object to another WITHOUT using a reference.

    C / C++ / MFC tutorial question

  • Launching Device Manager or manipulating device manager from C++
    A ajisthekingofpop

    I want to be able to prompt the Device Manager to install some driver files from a specific location from C++.

    C / C++ / MFC c++ json help question

  • Launching Device Manager or manipulating device manager from C++
    A ajisthekingofpop

    Sorry to be such a pain. Can you eleborate a little? I have used both these functions in the past but how on earth would I use them to prompt the device manager to install some drivers from a particular location?

    C / C++ / MFC c++ json help question

  • Parsing XML
    A ajisthekingofpop

    If its C# you are working in, then just deserialise the XML document into a standard POCO (Plain old CLR object) and then run a loop on it to take all the data you want out and place it into an Array (or Generic List).

    XML / XSL data-structures xml json help

  • How to play a encoded video file ?
    A ajisthekingofpop

    No. You can't really do that. All you havwe done is ASCII encoded the binary data and potentially added a massive overhead to the processing. You cant just past such an encoded object to a video player and it can work out what to do with it. I personally would never encode video data into base64 and then embedd it in XML. That is asking for trouble.

    XML / XSL question xml tutorial

  • Launching Device Manager or manipulating device manager from C++
    A ajisthekingofpop

    I want to be able to automatically install some driver files for use by my application. I have looked high and low and cant find any API documentation to help me out. Does anyone know of a way?

    C / C++ / MFC c++ json help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups