1,730 Posted Topics
Re: Did you find solution? If you can get to Linux anyhow you can use command `sudo update-grub` | |
Re: What design stage have you reached? Could you explain how much you have in paper? | |
Re: And note that Python does not compete with C++ to the fullest sense of the word. It compliments it. you speedily develop in python and when you need critical operations you can make a C/C++ program and use it for that Part. Have you heard of CTypes? One of best … | |
Re: Well that is the Question, but where is your efforts? | |
![]() | Re: And Python 2.x is not compatible with 3.x So install both version and set your IDE to Python 3 which you are learning and let blender happily use 2.x If you want to learn with blender wait for version compatible with 3.x |
Re: [QUOTE=nav33n;607288][code=php] <?php $filename ="excelreport.csv"; $contents = "testdata1;testdata2;testdata3; \n"; header('Content-type: application/ms-excel'); header('Content-Disposition: attachment; filename='.$filename); echo $contents; ?> [/code] I had given a similar example in another thread. Well, csv or excel, the procedure is the same.[/QUOTE] Where did this man go? He is missing (together with kkeith and other longtime phpers) ![]() | |
Re: You can definitely achieve that with [wxWidgets](http://wxwidgets.org/). I have written [some tutorials](http://hosannahighertech.co.tz/forums/forumdisplay.php?fid=9) which you can checkout. I use [wxDatabase](https://github.com/mtangoo/wxDatabase) for Database issue (which I maintain also). So check it out! ![]() | |
As heading shouts, I need to make source code formatter to format PHP Codes. RobertoP have written nice Lexical analyzer that means no need for me to tokenize file. I just do not know how to "juggle" with tokens to produce the formatted code. I appreciate any pointer especially simple … | |
Re: http://packages.debian.org/sid/i386/gcc-4.7-base/download | |
Hi, I know how to make C++ plugin based application with C++ plugins. I need to add ability to code plugins in Python. I want users to be able to write Plugins in any language (C++ or Python). What are fundamentals of writting app in C++ but support plugins in … | |
I have Windows 7 Professional. I bought it in 2010 and it have never bothered me until when it started complaining. I have found that where I bought they did install Using their own product key but did give all Computers DVDs (XPSP3, Win 7 Pro et al). The Disks … | |
Re: [QUOTE=mschroeder;1664131]You absolutely get what you pay for. Steer far away from unlimited hosting, unless of course you can show me an unlimited hard drive, or a NIC with an infinite port speed.[/QUOTE] Good logic! Loved it! | |
Re: So you want to mix 32 and 64bit? You open the can of worms there! | |
Re: I have a collection of resources [on my site.](http://hosannahighertech.co.tz/forums/showthread.php?tid=6) Check if they be helpful to you! | |
Re: In that case you need to use GUI toolkit for UI. I suggest wxWidgets! | |
Re: how would you do that in commandline terminal? | |
Re: I prefer CodeLite. Stable, Class generator, generate implementation of declared functions, GCC/VC Compilers support, GTK, QT, wxWidgets projects support, RAD for wxWidgets, Import VS Solution, Git/SVN integration et al. But try the posted IDEs and choose your flavor! | |
Re: No Better OpenSource is there Yet and many people cannot pay when there is better free alternative! | |
Re: [**'DOCUMENT_ROOT'**](http://php.net/manual/en/reserved.variables.server.php) *The document root directory under which the current script is executing, as defined in the server's configuration file. * Are you sure url to file system mapping is correct? ![]() | |
Re: [QUOTE=edensigauke;1677178]I want to know what method to use to view Images from my MYSQL database using PHP. i know that for basic data it is getString(). what about for images?[/QUOTE] [url]http://www.google.com/search?q=php+mysql+blobs[/url] | |
Re: I don't know if The formula is right (check and change it), but my aim is to show you how to do it rather than accurate answer. So try to poke around :) [CODE=python] import math def main(): value = float(raw_input("Please enter the Number: \n ")) freq = float(raw_input("Please the … | |
Re: I'm not as professional as Mike, Vijay, and the co on C++ compiler but I will throw my experience. If you need something that will work and be reasonably productive, you can go for GCC/GDB. If you need an advanced debugger then MSVC is better for you than GCC/GDB. I … | |
Re: I assume you have database and tables defined. Also I assumen names of column in INSERT query are correct and case sensitive. Try using PDO instead of that one. Amny advantages for using PDO especially its prepared statement. Here is sample code: <?php if(isset($_POST['name'])) { $id= (int)rand(1,9999999); $name = $_POST['name']; … | |
Re: not sure I understand your query but its easier to separate things like loginform.php where all login form html/php data goes member.php contain memeber are protected for non members index.php for putting things together Now in index.php if($userIsLoggedIn)//your mechanism for logging in { //set some member area variables here is … | |
Re: There are many out there: Soci, debea, Poco::Data, ODBC(and unixODBC), databaselayer All these works! | |
Hi All, I have made simple CMS with PHP/MYSQL. It make use of TinyMCE as Javascript editor. I can delete as well as add the contents. But How can I load the contents from database to TinyMCE for editing and saving? Here is my PHP code to add contents using … | |
Re: [url]http://www.microsoft.com/downloads/en/details.aspx?FamilyId=DD422B8D-FF06-4207-B476-6B5396A18A2B&displaylang=en[/url] | |
Re: what I understand is, custom module you import in your python must be on the same directory as the script from which you are importing. Is that so in your case?WHAT ERROR(s) DO YOU GET? | |
Re: Get your Mingw compiler for cross platform (In Linux you have already GNU GCC). If you love bundles get your [URL="http://codelite.org"]CodeLite [/URL]IDE or [URL="http://codeblocks.org"]Code::Blocks[/URL] IDE. | |
Re: [QUOTE=Jollyyy100;1579961] But when i change the ...username = '$username'"); it gives me an empty row.[/QUOTE] I always use something like this, and it works! [CODE=PHP]$sql = "SELECT * FROM users WHERE username='{$username}' AND password='{$password}'";[/CODE] | |
Re: Pritaeas is right http://aws.amazon.com/developertools | |
Re: Have you read at [URL="http://www.pygame.org/news.html"]Pygame news[/URL]? I cannot tell if they are going to abandon Pygame but they are heading on JS. If they are abandoning Python I would not bother learning it. I would look at other modules or Move to another language. Even SDL is moving towards commercial. … | |
Re: [QUOTE=cwarn23;1673511]Please don't bump old threads as I am sure this has been fixed in PHP 5.3.*[/QUOTE] Genius bump-er hunter ;) | |
I have done alot of OOP for long now (with C++/Java/Python etc) but world of JS is confusing. I wanted to try it by writting Ajax library (I know there are libs but this for JS OOP familiarization) and found confusing. No class keyword et cetera. What is happening? Am … | |
Re: [QUOTE=ajbest;1669617]This is a matter of personal preference on whether to store the full file path in the db or to just store the file name. I generally like to only store the file name because if I later decide that I want the folder to be located somewhere else I … | |
Re: Mh Great man! That was great trick that always tricked me. Tahnks Gribouillis for asking. When one asks one might give answers but many around get knowledge Bravo! | |
Re: what about CDs that came with vista? | |
Re: [QUOTE=Sorcher;1664043]or maybe its sort of an browser addon?[/QUOTE] Try another browser or use same browser with all addons disabled | |
Hello all, I have been long using Tango Icons and are good, but some stuffs are lacking. Is there good freeware Icon designer or free Icon package? Thanks alot | |
Re: [QUOTE=clarence1723;1673359]theres only one problem in the comment box given by naveen whenever you refresh it.. it resubmits the form... is there any way to fix it? please help..[/QUOTE] I hope the second one is me ;) BTW Add [URL="http://www.php.net/manual/en/function.header.php"]page redirection[/URL] after comment is successfully sent! | |
Re: Before you jump in one's script you must know what is happening. Try understanding [URL="http://www.w3schools.com/php/php_mail.asp"]how PHP Mail works[/URL]. then it will make your task easier | |
Re: [QUOTE=iThaos;1174635]Thanks for all your opinions then. I'll get Netbean then :) @cwarn23: I've done it before myself but thanks for the offer. Can I not use it with IIS though?[/QUOTE] First +1 for both Netbeans & NPP. NPP+ Explorer plugin make good editor for simple project. As project gets bigger … | |
Re: try learning by dividing the issues at hand using functions: 1.Function that Gets numbers entered by the userand first ask the user how many numbers there are. 2. Find average should always be a float, even if the user inputs are all [CODE=python] #function to get numbers and store them … | |
Re: I love firefox because I'm used to. It have never failed me that much so why shift anyway? BTW I have Opera, Chrome, FF for testing web apps | |
Hello all, I need some help to get all wxpython methods that associate widgates. I mean ALL methods for wx.Button, wx.Frame etc. I will appreciate if I will get something like pdf version but anything or Idea is welcomed Thanks and regards Steve | |
Re: [QUOTE=ampam;1196333][B]can somebody help me i need a compiling site for documents its like a registration site but your filling up documents for a business. that every page has a login/logout. so that if she/he didn't finish the registration he can logout to save and login to continue thank you[/B][/QUOTE] And … | |
Re: I have written the program but menu doesn,t show up! What is wrong? code import wx class MyFrame(wx.Frame): def __init__(self, parent,id,title): wx.Frame.__init__(self, parent,id,title,size=(250,150)) menuBar=wx.MenuBar() file=wx.Menu() file.Append(-1,'Quit','Quit application') menuBar.Append(file,'&File') self.SetMenuBar=(menuBar) panel = wx.Panel(self, -1) statusBar = self.CreateStatusBar() self.Centre() self.Show(True) app=wx.App() MyFrame(None,-1,'Simple Menu') app.MainLoop() | |
Re: [QUOTE=linux;633979]I hate backseat moderating, but "dickheads" isn't a family friendly word.[/QUOTE] 100% agree with you! | |
Re: easiest way would be tokenize the string and use the tokens. Somewhere you can have array of Months. Also a simple function to check whether to use st, nd, rd or th ![]() |
The End.