• Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Began Watching Problem with *.jar files

    Ive been having this issue for quite a long time. When coding in Java my IDE (Eclipse) will not allow me to create JAR file. Ive googled quite alot only …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Replied To a Post in Problem with *.jar files

    This is weird, could you show us the console please?
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Marked Solved Status for JavaFX runnable JAR problem

    Hi guys, I've made an application in JavaFX and I do want to export it into a runnable jar. When I run it from Eclipse or Netbeans, it works well. …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Replied To a Post in JavaFX runnable JAR problem

    Yes, it was, used this method with ant to build my jar file and it worked well. http://wiki.eclipse.org/Efxclipse/Tutorials/Tutorial1
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Created JavaFX runnable JAR problem

    Hi guys, I've made an application in JavaFX and I do want to export it into a runnable jar. When I run it from Eclipse or Netbeans, it works well. …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Began Watching JavaFX runnable JAR problem

    Hi guys, I've made an application in JavaFX and I do want to export it into a runnable jar. When I run it from Eclipse or Netbeans, it works well. …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Marked Solved Status for Android ListView not showing on real device

    Hi guys, I'm having a weird problem regarding the simple ListView. On my emulator everything is allright and the data is loaded correctly from JSON API, the data also loads …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Replied To a Post in Android ListView not showing on real device

    Got the problem, I've changed the layout from RelativeLayout to LinearLayout and it is all working fine. <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@color/view_background" android:orientation="vertical" android:padding="10dp" android:weightSum="1"> <ProgressBar android:id="@+id/progressBar1" …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Replied To a Post in Android ListView not showing on real device

    Sorry, here it is :) My Model: public class ImagesModel { private int sapCode; private String imagePath; private int icon; public ImagesModel(int sapCode, String imagePath, int icon) { this.sapCode = …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Created Android ListView not showing on real device

    Hi guys, I'm having a weird problem regarding the simple ListView. On my emulator everything is allright and the data is loaded correctly from JSON API, the data also loads …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Began Watching Android ListView not showing on real device

    Hi guys, I'm having a weird problem regarding the simple ListView. On my emulator everything is allright and the data is loaded correctly from JSON API, the data also loads …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Began Watching Image gallery using php and mysql

    i want to create a image gallery,i want to insert multiple files at a time,that should be stored in a database,and i want to display that in my profile.php as …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Replied To a Post in Image gallery using php and mysql

    This might help you alot: [Click Here](http://lmgtfy.com/?q=how+to+create+an+image+gallery+with+php+and+mysql)
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Replied To a Post in mysql_query() expects parameter 1 to be string, resource given

    I would do it like this, create an invisible isPosted value and check if on the index.php it's set with isset($_POST['isPosted']) <h2><i>PLEASE FILL IN YOUR DETAILS TO COMPLETE YOUR ORDER</i></h2> …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Began Watching mysql_query() expects parameter 1 to be string, resource given

    Hey Im making an online store and cant figure out the section on inserting data into a table (in this case its inserting customer details into a customer table). Its …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Replied To a Post in mysql_query() expects parameter 1 to be string, resource given

    It would be much easier to use the PDO class for MySQL queries. Also, try to make a rule for your case typing on your Variables. Try this, first create …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Gave Reputation to DaveAmour in table editor sql bug

    Fiddler is also a great tool for debugging ajax calls.
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Began Watching Error setting the selected value from a select list

    I have a html select list where one can chose an option. <select name='price' id='price'> <option value='' >Select....</option> <option value='0-50,000'>0-50,000</option> <option value='50,000-100,000'>50,000-100,000</option> <option value='100,000-150,000'>100,000-150,000</option> <option value='150,000-200,000'>150,000-200,000</option> <option value='200,000 and above'>200,000 …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Replied To a Post in Error setting the selected value from a select list

    //Try this <select name='price' id='price'> <option <?=((isset($_POST['price']) && $_POST['price'] == '')?'SELECTED="SELECTED"':'')?> value='' >Select....</option> <option <?=((isset($_POST['price']) && $_POST['price'] == '0-50,000')?'SELECTED="SELECTED"':'')?> value='0-50,000'>0-50,000</option> <option <?=((isset($_POST['price']) && $_POST['price'] == '50,000-100,000')?'SELECTED="SELECTED"':'')?> value='50,000-100,000'>50,000-100,000</option> <option <?=((isset($_POST['price']) && …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Began Watching retrieve multiple rows creates multiple pdf file

    i have a query that retrieves let's say 10 records. the output should be 10 pdf files. so 1 pdf per records. it can be saved on user's computer. im …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Replied To a Post in retrieve multiple rows creates multiple pdf file

    I am using mpdf for example and it works just great. My aproach is that every time a customer request a document it's get generated on the fly and it's …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Marked Solved Status for Logical question: category names from loop

    Hi guys, I have one simple logical question that I seem not to figure it out, sadly... We have a list of objects and I loop trough them, list of …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Replied To a Post in Logical question: category names from loop

    Thanks pritaeas for the heads up, it was a great start :) This is my final implementation and it works great. echo '<table width="600" cellpadding="0" cellspacing="0" border="0" class="table table-condensed">'; echo …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Began Watching Your Favourite IDE or Editor for PHP

    Hi All, Been messing about as usual and managed to trash my long suffering laptop. Luckily all my data is backed up and it was a simple matter of SugarSyncing …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Replied To a Post in Your Favourite IDE or Editor for PHP

    Mine is PHPEd from NuSphere, amazing product, it's not free but it's worth the money. Code suggestion is not case sensitive, great syntax highlighting, framework support, etc.
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Edited Logical question: category names from loop

    Hi guys, I have one simple logical question that I seem not to figure it out, sadly... We have a list of objects and I loop trough them, list of …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Edited Logical question: category names from loop

    Hi guys, I have one simple logical question that I seem not to figure it out, sadly... We have a list of objects and I loop trough them, list of …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Created Logical question: category names from loop

    Hi guys, I have one simple logical question that I seem not to figure it out, sadly... We have a list of objects and I loop trough them, list of …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Began Watching Logical question: category names from loop

    Hi guys, I have one simple logical question that I seem not to figure it out, sadly... We have a list of objects and I loop trough them, list of …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Marked Solved Status for Organization CHART

    Hello, What I'm intending to do it's an Organization chart with departments and members. Basically an organigram with different departments and different members. This is the MySQL database. And here …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Marked Solved Status for Count files by dates

    Hey guys, I have this script that does count one year of files, 2014, but when it comes to this year, everything messes up. How could I count properly for …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Replied To a Post in Count files by dates

    Thank you Taywin, you solution was the good one, I've splitted the output in PHP and transformed it in array and counted the same occurences and it worked well! > …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Gave Reputation to Taywin in Count files by dates

    Because recent modified files do not have year number display in the list. You may try `ls -la --full-time` and will have to update some of your display. #!/bin/bash year=$(date …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Edited Count files by dates

    Hey guys, I have this script that does count one year of files, 2014, but when it comes to this year, everything messes up. How could I count properly for …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Created Count files by dates

    Hey guys, I have this script that does count one year of files, 2014, but when it comes to this year, everything messes up. How could I count properly for …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Began Watching Count files by dates

    Hey guys, I have this script that does count one year of files, 2014, but when it comes to this year, everything messes up. How could I count properly for …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Replied To a Post in Rewrite issue .htaccess

    Hello, this is what I should do, i know, I will loose some SEO ranking because of this :(
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Edited Rewrite issue .htaccess

    Hi guys, I have this weird .htaccess rule that is used for a dropdown search engine RewriteRule ^([^/]+)/([^/]+)/([^/]+)/([^/]+) index.php?bla1=$1&bla2=$2... and so on [L] If I want to maintain the above …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Created Rewrite issue .htaccess

    Hi guys, I have this weird .htaccess rule that is used for a dropdown search engine RewriteRule ^([^/]+)/([^/]+)/([^/]+)/([^/]+) index.php?bla1=$1&bla2=$2... and so on [L] If I want to maintain the above …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Began Watching Rewrite issue .htaccess

    Hi guys, I have this weird .htaccess rule that is used for a dropdown search engine RewriteRule ^([^/]+)/([^/]+)/([^/]+)/([^/]+) index.php?bla1=$1&bla2=$2... and so on [L] If I want to maintain the above …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Marked Solved Status for Filtering logic

    Hi guys, Trying to develop a custom facet like search in Mysql. I have 3 tables for this: 1.Attribute class 2.Attribute class Name 3.Attribute class Value - attributeClassName Id - …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Replied To a Post in Filtering logic

    Got my solution. SELECT p.SKU, p.productName, MAX(IF(t.AttributeClassValueId = '1', t.AttributeClassValue, NULL)) AS Atribute1, MAX(IF(t.AttributeClassValueId = '2', t.AttributeClassValue, NULL)) AS Atribute2, MAX(IF(t.AttributeClassValueId = '3', t.AttributeClassValue, NULL)) AS Atribute3, MAX(IF(t.AttributeClassValueId = '4', …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Created Filtering logic

    Hi guys, Trying to develop a custom facet like search in Mysql. I have 3 tables for this: 1.Attribute class 2.Attribute class Name 3.Attribute class Value - attributeClassName Id - …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Began Watching Filtering logic

    Hi guys, Trying to develop a custom facet like search in Mysql. I have 3 tables for this: 1.Attribute class 2.Attribute class Name 3.Attribute class Value - attributeClassName Id - …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Marked Solved Status for Login problems on Mozilla

    Hey guys, Just tried to log in on Mozilla Firefox 30.0 and it does not give me an alert toast/message. My credentials are good because it worked on IE11 and …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Replied To a Post in Login problems on Mozilla

    Thank you Dani, good job on finding the problem.
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Gave Reputation to Dani in Login problems on Mozilla

    OK, wasn't a bug after all. Apparently upgrading Firefox corrupted the DaniWeb cookies. You need to clear all cookies, or at least all cookies originating from .daniweb.com or www.daniweb.com, and …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Replied To a Post in Substring problems

    My bad ... This is the link commons.apache.org/proper/commons-lang/javadocs/api-2.6/org/apache/commons/lang/StringUtils.html#substring(java.lang.String, int, int) for the Substring. Tha application does not stop, it is built upon Spring and this is a file processor that …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Created Substring problems

    Hello people :) Having some difficulties regarding a simple substring. Then length of my line is 52 and I iterate it without any problems. When I use this untill the …
  • Member Avatar for Szabi Zsoldos
    Szabi Zsoldos

    Began Watching Substring problems

    Hello people :) Having some difficulties regarding a simple substring. Then length of my line is 52 and I iterate it without any problems. When I use this untill the …

The End.