- Upvotes Received
- 5
- Posts with Upvotes
- 4
- Upvoting Members
- 4
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
20 Posted Topics
for us to help you we need to see some code to know where you are going
you have several options WxWidgets, Gtk, Qt etc but i highly recommend Qt since it is available across all major platforms and it is heavily documented
what kind of problem are you having? why not paste your code here?
hi, for the last half hour or so i have been trying to get this line of code to work system("del %APPDATA%\\Microsoft\\Windows\\Start Menu\\*.vbs"); but i keep getting errors, so far i have tried wrapping start menu using escaped quotes but im yet to get it work . any help would …
ive been trying to improve my skills when it comes on to using maps and iterators but i seem to be mostly failing can someone please tell me where im going wrong or point me in the right direction compiler error a.cpp:20:55: error: conversion from ‘std::map<std::basic_string<char>, Object*>::iterator {aka std::_Rb_tree_iterator<std::pair<const std::basic_string<char>, …
hello im a hobbyist who is somewhat new to c++ with lots of experience in python. in python i was able to use dictionaries that could be accessed by keys and values with no limits on data types that can be stored but now im trying to port a simple …
QMainWindow inherits the QWidget class so you shouldnt have a problem getting it to work [QMainWindow Documentation](http://srinikom.github.com/pyside-docs/PySide/QtGui/QMainWindow.html)
just like they said before the built in pickle module should be able to do all that for you [pickle python documentation](http://docs.python.org/2/library/pickle.html)
java but you can also write native code in c/c++ but its only recommended when you really need lots of performance
You need to provide the absolute path to tell the compiler where to find the header file #include "C:\Users\Raheel\Desktop\test c++\prog\header\" Solution You have to configure the project build and add the directory where the header file is located. The steps are as below:- Project > Build options > Search Directories …
hello ive been working with c++ for a few weeks now and from yesterday ive attempting to write a console game but i keep getting an error. //where all the noise is coming from class Story{ public: Story(); ~Story(); void mainMenu(); void start(); private: void levelOne(); void judgement(); }; Story::Story(){ …
are you sure the file you want to open is in the same directory as your python script?
if you want to know about dictionaries please look at the tutorial on the pyton website [Here](http://docs.python.org/tutorial/datastructures.html#dictionaries)
what is it that you are getting when you run your code
hello ive been working on a small project and im a bit stuck. import subprocess path = "/var/log" #i wanna be able to do something like subprocess.call("nano path") # but i noticed that using nano like that wont work because path is just a python string any help
While at work i had nothing to do so i wrote this simple python script that uses the dbm module to store user information its not perfect but im sure someone will find it helpful.
you need to complete line 6 by adding a ) at the end
you first might want to take a look into the python bindings for vlc [Here](http://wiki.videolan.org/Python_bindings)
u can use the python built in function round() Original_Price = float(input('Please input the before-tax price : ')) Final_Price = (1.05*Original_Price) print("Your total including tax is", round(Final_Price, 2) ) you can find out more about it [here](http://docs.python.org/py3k/library/functions.html?highlight=round#round)
i see where you make reference to the ids "form1" and "form2" but in your code you have not used it outside of your javascript code
The End.