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
~1K People Reached
Favorite Tags
Member Avatar for hgbreton

I am currently playing about with lesson 08 here [url]http://insanitydesign.com/wp/projects/nehe-android-ports/[/url] I would like to change the background colour from black to white. In order to do this at the start of onDrawFrame() I have called [code=java] gl.glClearColor(1.0f, 0.0f, 0.0f, 0.0f); [/code] This does indeed set a white background screen, but …

0
76
Member Avatar for hgbreton

Hi. I've got to write some code to get data from an XML document and turn it into C# objects. Problem is that the XML document will not always have the same nodes, since it is produced from a web form that people have filled in varying amounts of (which …

Member Avatar for hgbreton
0
153
Member Avatar for coffeeMan21

I am getting an error, Inconsistent accessibility: return type " " is less accessible than " ". Not sure what is going on, I would appreciate some help [code] public List<point2d> get_myList(ReturnData3 rd) { List<point2d> points = new List<point2d>(); List<double> x = rd.X3; List<double> y = rd.Y3; int h = …

Member Avatar for vdeych
0
608
Member Avatar for hgbreton

I need to create a SOAP wrapper of the form [CODE=xml] <SOAP-ENV:Envelope xmnls=........><SOAP-ENV:Body></SOAP-ENV:Body></SOAP-ENV:Envelope> [/CODE] My C# code to do this is as follows [CODE=C#] XmlElement soapEnvelope = document.CreateElement("SOAPENV", "Envelope", "http://schemas.xmlsoap.org/soap/envelope"); XmlElement soapBody = document.CreateElement("SOAPENV", "Body", "http://schemas.xmlsoap.org/soap/envelope"); [/CODE] This works fine for the Envelope part but then adds a spurious xmnls …

Member Avatar for kvprajapati
0
410