180 Topics

Member Avatar for
Member Avatar for Ketsuekiame

Seems like there might be a problem with the editor not recognising code insertion when you're pasting code in the middle of a list. Below is a post displaying the problem http://www.daniweb.com/software-development/csharp/threads/458671/c-mysql-display#post1993030 I tried multiple ways to get that in there including: 1. Single Enter + Tab 2. Double Enter …

Member Avatar for Ketsuekiame
0
368
Member Avatar for Aethir

# This is an advanced guess the number game. import random # The very basis of this game. import math # Used for math.ceil import time # Used to split up long portions of text. def errorDisplay(errorCode): if errorCode == '1': print('\n\n\nError ' + errorCode + ': unlockedGameModes outside of …

Member Avatar for Aethir
0
277
Member Avatar for mike_2000_17

I was just looking a this thread with a lot of quotes (people quoting each other) and there were these really weird graphics (see the attached snapshot). I'm using Chrome: Google Chrome 26.0.1410.63 (Official Build 192696) OS Linux WebKit 537.31 (@147513) JavaScript V8 3.16.14.11 Flash 11.2 r202 User Agent Mozilla/5.0 …

Member Avatar for Dani
1
215
Member Avatar for chriswelborn

I was trying to edit a post that I made earlier, and the "Edit Post" link brought up the text edit mode, but did not have any "Save" or "Submit". Only "Cancel". Also, the "Edit Post" button was still active. When I clicked it the second time it just "refreshed" …

Member Avatar for Dani
0
841
Member Avatar for fyra

Hi people. I have a remove function that should set a hide member of a node to 1 instead of actually remove the node. The function works well when I insert and remove top and tap respectively (both nodes have their hide member set to 1) but when I insert …

0
146
Member Avatar for salimajentli
Member Avatar for Yoink

Hi, I'm writing a simple program that runs a vending machine. I thought I had everything working fine untill I messed around with the money input some more. In my program I obviously compare money values and check to make sure the values match up exactly to buy an item. …

Member Avatar for Yoink
0
493
Member Avatar for happygeek

Am just editing a news story ([How to disable SIM-killing USSD PUK attack that has spread to all Androids](http://www.daniweb.com/software-development/mobile-development/news/436119/how-to-disable-sim-killing-ussd-puk-attack-that-has-spread-to-all-androids#post1873145)) and cannot upload accompanying image. Get the following: "A problem was encountered while attempting to move the uploaded file to the final destination."

Member Avatar for Ancient Dragon
0
2K
Member Avatar for amir.geva.98

There is an interesting project on KickStarter that is close to successfully funding. I'm not the owner of the project, but I'm backing it and would be disappointed to see it fail. Please see if you would like to participate: http://www.kickstarter.com/projects/Musopen/open-source-bug-tracking

-2
115
Member Avatar for kevinjam

computer startes up in the morning then shuts down ,then trys to start again after the third time it comes on ..goes great all day but when i am playing crysis ,for no reason it will will boot itself,,iam running intel i5 2320-at 3.00 ghz.. i have a nzxt phanton …

Member Avatar for kevin2s
0
199
Member Avatar for mike_2000_17

Hi, There is a bug with the editor that I noticed and others noticed too. When you post a very long code segment (or maybe just a long post, period), at some point it seems to overflow the capacity of the editor and you can no longer scroll all the …

Member Avatar for Dani
0
280
Member Avatar for mike_2000_17

Hi, I've been experiencing a weird bug in the editor (for a week or so). If I write a post, everything is fine and dandy until I start a block of code. From the first line of code that I write, and for every subsequent line of code after that, …

Member Avatar for Dani
1
561
Member Avatar for pritaeas

Was just searching, had 'pagination' in 'PHP forum'. Got plenty of results back, but when I added the filter to show only 'discussion threads', there were no results at all.

Member Avatar for Dani
0
299
Member Avatar for Reverend Jim

When I copy vb code from a post to try locally, pasting the code always results in the removal of blank lines. It doesn't matter if I paste into Visual Studio or TextPad. Blank lines are never maintained. If I paste into VB, indentation is recreated based on the code …

Member Avatar for Reverend Jim
0
212
Member Avatar for funkey100

Hey, I am trying to make a C++ scrit that decodes and encodes tenis polar (search it on Google if you don't know what it is). After some testing, I found out my application stops after the strcpy. Any help? The code is below. Thanks! #include <iostream> #include <cstring> #include …

Member Avatar for Schol-R-LEA
0
298
Member Avatar for phoenix_2000

Hello, For my current project, i'm supposed to write a statistics page that shows data about the presence of persons (or lack thereof) per profitcenter. (To put it roughlu, a profitcenter is a group of persons within this company, a bit like a department) in order to generate the statistics, …

Member Avatar for phoenix_2000
0
127
Member Avatar for Dani

Hi, I'm completely desperate for some help. I am getting a handful of reports that DaniWeb keeps crashing the web browser. Most of these reports are coming in from Firefox. Supposedly the problem is fairly consistent. I *cannot* duplicate the problem no matter how hard I've tried. I spend a …

Member Avatar for neatric
0
440
Member Avatar for xEffrego

My code is this atm: #include <stdlib.h> #include <stdio.h> int main(int argc, char *argv[]){ int a,b,c; int swap; printf("Enter 3 Numbers (# # #):"); scanf("%d %d %d", &a,&b,&c); //does all its computing, to see which one is biggest. return EXIT_SUCCESS; } The result when i run it in eclipse is …

Member Avatar for WaltP
0
2K
Member Avatar for Dani
Member Avatar for Dani

There is currently a bug where Internet Explorer 8 users cannot reply to existing threads. I am aware of the problem and am still working on a resolution. IE 9 works fine, as do Firefox, Chrome, and Safari. If you are affected, it is highly recommended that you upgrade from …

Member Avatar for Dani
0
229
Member Avatar for ilovejava

This is a frighteningly subtle bug I first learned about in C (Andrew Koenig's ``C Traps and Pitfalls''), but it's still with us in Java, and I assume C++ as well... The following method looks like it should always return the absolute value of n, but every once in a …

Member Avatar for stultuske
0
401
Member Avatar for judge6

Hi all, I'm working on a website which has a horizontal navigation menu, much like the one on DaniWeb. Basically I need to include an icon which floats right for each list item. IE7 has a bug whereby if the container div does not have a width stipulated then a …

Member Avatar for Dandello
0
151
Member Avatar for jean122

Hi, I have a problem with Battlefield 3. Every time at the last mission of the campaign, it will load for ouhrs. The game won't start. It's at the moment that you jump at the top of the train. Specs of my PC: AMD Athlon II X4 645 3.1 Ghz …

Member Avatar for Narue
0
229
Member Avatar for IndianaRonaldo

Hi all, I am just going through C++ basics now and I read that enum types cannot be input directly with cout and cin and such.And also that type coercion from int to enum is not allowed.But when i do this, [CODE] enum SumEnum{ENUM1,ENUM2,ENUM3} SumEnum VarEnum; scanf("%d",&VarEnum); printf("%d",VarEnum); [/CODE] It …

Member Avatar for Tumlee
0
1K
Member Avatar for Mouche

Hello, I ran into a bug with the tab focus for logging in. [B]How to reproduce the bug:[/B] 1) Make sure you are logged out 2) Click on the "Join Daniweb" link at the top right of the page 3) Click on the "Member Log In" link at the top …

Member Avatar for Mouche
1
181
Member Avatar for JoshuaBurleson

I'm trying to figure out how to deal with multiple matches in my address book, say the user has two people by the name of Bob; one is Bob Lastname and the other is Bob Namelast, how would you approach dealing with telling them to specify, and then allowing them …

Member Avatar for Gribouillis
0
229
Member Avatar for TrustyTony

I get old search result when clicking the menu bar on bottom of the window. I would also much appreciate one word text or iconic menu for mobile phone browsers once the bug is fixed. To reproduce (Platform WindowsXP, browser Firefox 4.0.1) I click New Posts after clicking Python Forum, …

Member Avatar for Dani
0
245
Member Avatar for mattyg1192003

Hey Guys, I am a new student to Java and I am working on an assignment for school. I am not looking for anyone to do my work for me, just some guidance on what I can do to fix the problem. I have done research on this issue on …

Member Avatar for AhmedGhazey
0
3K
Member Avatar for danielgr

Hi, I wasn't sure where to post this, but thought it may save some time for someone who ran into the same problem. I had a problem in a project, where whenever I clicked the "Accept" button on a form, it would close the form for no reason. Originally, I …

0
104
Member Avatar for ~s.o.s~

Hi Dani, For some reason, I'm always getting the cached or old version of a given page. E.g. clicking on the CP link shows me a thread which was recently bumped in the C++ forum. After I added code tags to the post and moved it to a separate thread, …

Member Avatar for qq7434138
0
829

The End.