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

Anonymous

@Anonymous
About
Posts
12.5k
Topics
5.1k
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Asp.net 2.0 Gridview control problem
    A Anonymous

    Dear All, I have a problem in asp.net gridview control.I've put a textbox and an image button in the footer row.I want a popup window to be viewed when I click this image button.In this popup window there is a link button I want to pass its text to textbox in the parent window(that is in the gridview footer). I hope my question is clear. Many thanks and best regards. Hassan Amaar.

    Hassan Amaar

    ASP.NET csharp asp-net help question

  • What's python's claim to fame?
    A Anonymous

    Python is NOT 'just a scripting language' - It can be compiled just the same as any java program, you can have it interpreted or whatever you like. It can use c libraries and can even be embedded into c programs. py2exe compiles windows python apps freeze compiles the linux equiv and py2app compiles the mac equiv.

    Linux, Apache, MySQL, PHP csharp python question

  • What's python's claim to fame?
    A Anonymous

    Python doesn't have a claim to fame. Unlike the languages you referred to - C#, VB, and many others, Python is a scripting language. I know this site is primarily about Microsoft technologies, but Python isn't from Microsoft! It's very easy to learn, and has a great many uses. Projects than incorporate/written in Python: mod_python (Apache's python module) Sid Meier's Civilization IV Gentoo's Portage package management system Various NASA systems A large percent of Google products and in-house systems Youtube Mercurial (Hg) PyPy and a great many others. Enjoy!

    Linux, Apache, MySQL, PHP csharp python question

  • generating random dummy files
    A Anonymous

    Yeah, you might want to use a RNG to generate random numbers, which could be used directly or indirectly as the filename. I recommend a Mersenne Twister, the classes for which are on the web. I agree with No. 2 as well. Exceptions aren't always what they seem to be, so it's good to have any information you can get.

    C# help question lounge

  • How to generate a custom warning at compile time in C++
    A Anonymous

    does #warning work? I don't know your platform, but usually it does.

    Managed C++/CLI c++ tutorial

  • Xp Like ScrollBar in VC++ 6.0
    A Anonymous

    Neagoe Gabriel wrote:

    i want to use in vc++ 6.0 on windows Xp, xp like scrollbars

    You can use manifests[^] for that

    C / C++ / MFC c++

  • How to get the actual value?
    A Anonymous

    Oops sorry, the <'s and >'s got removed, the #include's should be #include <math.h> #include <stdio.h>

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

  • How to get the actual value?
    A Anonymous

    #include #include void main( void ) { double x = 2.0, y = 3.0, z; z = pow( x, y ); printf( "%.1f to the power of %.1f is %.1f\n", x, y, z ); } Output 2.0 to the power of 3.0 is 8.0

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

  • How to generate a custom warning at compile time in C++
    A Anonymous

    I want to generate a custom warning at compile time in C++. I am working with Sun Studio 9, C++ 5.6 compiler. Prompt replies will be appreciated.

    Managed C++/CLI c++ tutorial

  • while (*p++);
    A Anonymous

    that someone is none other than a micrsoft sample code. This piece of code is from: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/fs/obtaining\_a\_file\_name\_from\_a\_file\_handle.asp where p initially points to a: A:\\0C:\\0D:\\0\0 where \0 represents a single NULL character. I dont understand what you maen by *p = 0, but this piece of code doesnt modify any data, only pointer advancement. and how that works is still mysterious to me.

    C / C++ / MFC

  • while (*p++);
    A Anonymous

    I actually thought about it, and your interpretation doesnt seem to match what is working. This piece of code is from: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/fs/obtaining\_a\_file\_name\_from\_a\_file\_handle.asp where p initially points to a: A:\\0C:\\0D:\\0\0 where \0 represents a single NULL character.

    C / C++ / MFC

  • Iran Leader Calls for Israel's Destruction
    A Anonymous

    A theory based on one guy. Not really proof. And my point was still that I have not heard the president of Pakistan threaten Israel like Iran's president did. kgaddy (on my wife's computer)

    The Back Room com question announcement

  • Iran Leader Calls for Israel's Destruction
    A Anonymous

    please...ok, i'll bite. What scores have been settled in the 2nd term.

    The Back Room com question announcement

  • can't open excel from network drive using asp
    A Anonymous

    Hi guys! I'm having a problem with opening an Excel spreadsheet located on a network drive using the old ASP (not ASP.NET). I tried opening the same file from my local test server and the code works perfectly. But when I try to open the file from a network path it gives the following error:- Error Type: Microsoft Excel (0x800A03EC) '\\server\exceltest.xls' could not be found. Check the spelling of the file name, and verify that the file location is correct. If you are trying to open the file from your list of most recently used files on the File menu, make sure that the file has not been renamed, moved, or deleted. I've also tried using a mapped path, ie. "G:\exceltest.xls" but still doesn't work. I've looked everywhere on MSDN for info on access rights but can't find any on this subject. Does anyone know if opening an Excel file from a network drive is possible? Thanks for your help. Much appreciated.

    Web Development help sysadmin csharp asp-net question

  • Converting a C++ style string into something execvp can use.
    A Anonymous

    I have made a program to except user's input and use that input to execvp another program. The problem is that execvp has a prototype of int execvp(const char *file, char *const argv[]); and the user's input is a c++ style string (string input for instance). How can I convert that c++ style string into something at execvp can use? the c_str() function DOES NOT work.

    Managed C++/CLI question c++ help

  • efficient 'push&amp;hold' button ?
    A Anonymous

    DavidCrow wrote:

    There are lots of button examples here.

    i know, but there are only two examples on this/similar topic. http://www.codeproject.com/cpp/mouserepeat.asp[^] and http://codeproject.com/buttonctrl/repeatbutton.asp[^]. actualy that is only one example since the latter uses the first, and they both use the 'check if in client rectangle on lmbutton down' method and mfc... i'm looking for a perhaps simpler/more efficient method (and with using just win32) ...

    C / C++ / MFC tutorial question announcement

  • How to create Dynamic menu creation in web forms using c#.net with sqlquery and dataset
    A Anonymous

    sir i'm somasekhar working as a s.w.engg in a small comp.i saw dynamic menu creation in codeproject .com by krishna_accent.pls send a src code without use menu.js.pls send how to create menus using sqlquery and dataset .my database tables is same as what u provided a xmldata schema.pls help me sir.iam a fresher and new to .net.pls sir understand my problem.my mail id is sekhar.gunta@gmail.com

    C# csharp database help javascript asp-net

  • toolbar for Outlook Express
    A Anonymous

    Have anybody seen any examples or source code how to make toolbar for Outlook Express?

    C / C++ / MFC tutorial question

  • Well, a perfect reason of invasion has arrived, so can we invade now?
    A Anonymous

    Vivic wrote:

    They COULD have ordered a recount in all the counties of Florid earlier but they didn't.

    Wrong again. Gore made the descision to go after the recount for certain counties. It was Gore's legal team's decision. It was a dumb stragety, and it all falls on Gore. And besides, many newspapers did their own recount, even the NY times (Liberal) did a recount and evrytime, the said Bush won. The florida constitution says that they needed to certify the votes by a certain date, I think it's in december. That had nothing to do with the US supreme court. I am stunned by how little you know about the situation but feel compeled to run your mouth. One would think you would study up on the facts first.

    The Back Room question announcement

  • How to set a Textcolor in a CListCtrl
    A Anonymous

    Hi, thanx, i it helps! :) regards break;

    C / C++ / MFC question tutorial
  • Login

  • Don't have an account? Register

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