Click here to Skip to main content
Page 1 of 11
Page Size: 10 · 25 · 50


Author filtered by: parths [x]
Answer 13 May 2013   license: CPOL
Did you try the /DELAYLOAD[^] linker option in Visual studio?you can put your DisplayTT in this list.Check here[^] for more info on delayed loading.I hope this helps
Forum Message 8 May 2013  
wizardzz wrote:"Nobody actually tells you when you are training your replacement." i think
Answer 7 May 2013   license: CPOL
It looks like you're using nvidia-widgets[^]. If yes, maybe you can check out the example provided there, like this one[^].Have you made sure your GlutUIContext is initialized properly? Have glutInit, glutCreateWindow, ui.init been executed and checked for errors before the doUI is...
C++
Answer 21 Apr 2013   license: CPOL
For collision between 2 spheres, here's the first link[^] I got from a google search for '2D ball Physics'.The collision checks you have for the ball with the container checks only for a rectangular container. You should implement the container as a polygon. Maybe a structure which contains...
Answer 14 Apr 2013   license: CPOL
I couldn't see any calls setting the socket to work in non-blocking mode. Did you take a look at ioctl[^] (optionally ioctlsocket[^] for win32) with the FIOASYNC and/or FIOBNIO[^] options?Here's the first tut link[^] I got from google. You might find better ones.I hope this...
Answer 4 Apr 2013   license: CPOL
You shouldn't need to hard-code the server address in your client code. Check out the gethostbyname[^] function which resolves the server address if you supply it with your server name. I hope this helps.
C
Re: C# Convertion by parths
Forum Message 26 Mar 2013  
I really hadn't hadn't got your point the first time around. Did you mean that saying 'a.ToString would throw an exception' should actually be 'Calling a.ToString would throw an exception'? Sounds
Re: C# Convertion by parths
Forum Message 26 Mar 2013  
I rechecked what I had typed. Isn't that what I had said? :) "It was when I found out I could make mistakes that I knew I was on to something." -Ornette Coleman "P
Forum Message 26 Mar 2013  
Did you consider the checked[
Re: C# Convertion by parths
Forum Message 26 Mar 2013  
Midnight Ahri wrote:txtValue = (string)a; The typecast operation assumes that the object is of type or subclasses from the target type. So
Answer 26 Mar 2013   license: CPOL
Suggested reading for Win32 serial port programming is here[^].If you had any problems running code from one of the articles on this site, it might be a good idea to post a question on the article forum. The author might be able to help you better if you explain your problem clearly to them.
Answer 14 Mar 2013   license: CPOL
The GetModulePathName[^] documentation mentions The string returned will use the same format that was specified when the module was loaded.What you're getting is the short path name[^]Use GetLongPathName[^] to convert the returned path into it's long path form.
Forum Message 7 Mar 2013  
Why would you want to concern yourself with the primes p & q? By p & q I assume you mean the primes used for generating the keys. If you already have an encrypted file that should mean you alr
Forum Message 7 Mar 2013  
I think the OP means this[^]. "It was when I found out I could make
Answer 21 Feb 2013   license: CPOL
Did you try Intrinsics[^]?Something like this could work:unsigned long tmp = __readfsdword(0x30);IsDbgPresent = *((char *)(tmp + 0x2));I'm not sure if the offsets would change for 64 bit code, I tried to search but couldn't find any info on that.
Answer 21 Feb 2013   license: CPOL
How are you compiling your project? If you're using an IDE, did you ensure that A.cpp is added to the project?If you're compiling from the command line or a makefile, did you ensure you added both main.cpp and A.cpp as dependencies for the output executable?
C++
Forum Message 14 Feb 2013  
Have you tried TryFSharp[^]? They have a learning section (needs Silverlight) whic
Forum Message 15 Jan 2013  
I had seen this[^] game a while ago. "It
Answer 1 Jan 2013   license: CPOL
Hi, Wintrust.h and wincrypt.h use type definitions and / or macros which are defined in or indirectly from windows.hThis means that windows.h must be included before the wincrypt and wintrust headers.It seems (from the error listing you posted above) like you include hierarchy does...
Answer 22 Dec 2012   license: CPOL
Aren't window titles left aligned by default?Anyways, did you try Extended window styles[^]? Set the style to WS_EX_LEFT. The documentation mentions this is supposed to be the default.I hope this helps.
Answer 19 Dec 2012   license: CPOL
In you code FooParent expects a param 'a'In your line... new FooParent();...you haven't provided this param.
Answer 17 Dec 2012   license: CPOL
A good place to start looking for information can be: OSDev[^]Their set of tutorials[^] help you cover a lot of ground towards building your own kernel once you've understood the fundamentals.There are many things you need to do to get something like Windows, Linux, MAC OS, etc.I'd...
Answer 14 Nov 2012   license: CPOL
It seems from your code that you're trying find the longest sequence of steps for a Collatz conjecture[^] between 2 initial numbers.In the function 'NumOfSquence' you should start from num = 0 instead of num = 1 to count the number of steps instead of the number values.I hope this helps.
C++
Forum Message 11 Nov 2012  
CP also has a forum for Free Tools[
Re: Arduino kits by parths
Forum Message 30 Oct 2012  
I've been thinking of getting a starter kit to play around with for some time now. In case you get yourself a kit, I thought this[

Page 1 of 11
1 2 3 4 5 6 7 8 9 10


Advertise | Privacy | Mobile
Web04 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid