Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
1 Commented Post
0 Endorsements
Ranked #4K
~28.0K People Reached
Favorite Tags
Member Avatar for tanha

Hi, I have been reviewing and reading the docs for the VLCJ but unfortunately could not come to a conclusion of configuring and running it correctly. It is appreciated if someone placing an example, snippet or tutorial of that.

Member Avatar for tanha
0
2K
Member Avatar for tanha

Hi, I have a png image wihtout background and want this png to be my JFrame where the transparent section must be transparent; I have tried different ways I used the setOpaque(), setOpacity(), ImageIO but no clue. I want only my transparent png as JFrame. Any idea and solution will …

Member Avatar for tanha
0
2K
Member Avatar for tanha

I developed a web application system using ASP.NET VB code with SQL Server Database. Now I need to deploy them on a real server. I never used windows host and therefore, need and look for your valuable comments and feedback for the followings: [LIST] [*]Which host is better? [*]What kind …

0
138
Member Avatar for tanha

Hello everyone, I am creating UDF using CREATE FUNCTION statement. The question is how can I make them globally accessible to all the databases, rather than specific database? Regards,

Member Avatar for smantscheff
0
144
Member Avatar for tanha

Hi, I want to create Arabic to English dictionary with having pronunciation feature for the English words. How it is possible to implement using PHP and MySQL? Thank you,

Member Avatar for diafol
0
97
Member Avatar for tanha

I came again across "http://www.mysqludf.org/lib_mysqludf_str/index.php" and found the library useful but I could not figured out how to install and use them on WAMP Server version 2.0 with MySQL version 5.1.36 on Windows 7. I did followings steps but did not get the work done: 1. Created a directory named …

Member Avatar for tanha
0
871
Member Avatar for tanha

Hi, I would like to track students activities by the teacher and this is visible by the students parents "dependents" and therefore the parents could give comments to the activity issued by the teacher and the teacher could respond to parents comment too. So I designed the ER Diagram, but …

Member Avatar for tanha
0
147
Member Avatar for baheer

<?php mysql_connect("localhost","username","password") or die ("Cannot connect" . mysql_error()); $dbname=$_GET['database']; $tablname=$_GET['tabname']; ?> <div id="stylized" class="myform"> <?php echo "<span class='db'>Table:" . $tablname . "</span>"; ?> <?php mysql_select_db($dbname); $q=mysql_query("SELECT * FROM $tablname"); if(!$q){ die("Query Failed!"); } $fields_num=mysql_num_fields($q); echo "<table><tr>"; for($j=0;j<$fields_num;$j++){ $fields=mysql_fetch_field($q); echo "<th>{$field->name}</th>"; } echo "</tr>\n"; while($row=mysql_fetch_array($q)){ echo "<tr>"; foreach($row as $cell){ echo …

Member Avatar for tanha
0
137
Member Avatar for tanha

Hello everybody, firstly I am new in PHP, and I use the WAMP5 tools which has the following features: i) Apache 2.2.4 (SERVER) ii) PHP 5.2.3 + PECL iii) SQLitemanager iv) MySQL 5.0.41 v) Phpmyadmin I have a table named 'tblStudent' with four fields as follow properties: 1. stID int …

Member Avatar for JimiTster
-1
188
Member Avatar for tanha

Hi. I don't know what is wrong with the following attachment, actually I have two drop down list on my html form, and which is one retrieving the value from MySQL table, and the second is dependent to the first one, and that one also gets its value from another …

Member Avatar for cavalry
0
2K
Member Avatar for tanha

Hi everyone, I am using Ubuntu 7.10, and I have Java and MySQL installed with the command line as follow: 1. sudo apt-get install sun-java6-jdk 2. sudo apt-get install mysql-server and my JAVA and MySQL are working well, but now I want create connection between JAVA application and MySQL using …

Member Avatar for peter_budo
0
220
Member Avatar for tanha

Hi, I designed a page with CSS which has the following sections: [LIST] [*]Header and Logo [*]Left Navigation [*]Main Content [*]Footer [/LIST] Also I have another CSS file for the print of the page, where it hides the following sections: [LIST] [*]Header and Logo [*]Left Navigation [*]Footer [/LIST] It works …

Member Avatar for tanha
0
79
Member Avatar for tanha

Hi, When I click the X button of the window, the FormClosing is working as a charm, BUT when I kill the application, or restart the computer the application also closes but the FormClosing does not work. Why? and what should I do to execute a piece of code on …

Member Avatar for tanha
0
270
Member Avatar for tanha

Hi, 1. I have an application, which just display the user login time and and a welcome message on all my clients 2. I have another separate application, which is for monitoring purpose on the server, and display list of logged user. I would like to select an user and …

0
66
Member Avatar for tanha

Hi. Using the following Software: --- Visual C# Express 2008 --- MySQL --- Windows Operating System I am supposed to work on a Monitoring Application for an IT Center, so the requirement is: [LIST] [*]Users will be registered into the database and they will have an expiration_datetime; which means that …

Member Avatar for ddanbe
0
134
Member Avatar for tanha

Hi everyone, I have a registration form for the book, which has two many to many relationships with Author and Category, So I don't know what is the best way to implement and to be user friendly. If there is an example, please let me know and also share your …

Member Avatar for tanha
0
1K
Member Avatar for tanha

Hi. Suppose I have a list box, which is filled out from mysql, and I have a text box and a submit button. I want to add the text box data into list box and at the same time I want to have the text box data into mysql as …

Member Avatar for tanha
0
247
Member Avatar for tanha

Hi, I have a Book Registration Form, in which one book may have more than one authors and can belong to more than one category, therefore on the registration form, I have a textbox for the category, in order the category is not in the dropdown, I want to add …

Member Avatar for tanha
0
114
Member Avatar for tanha

Hello everybody, I have this text file, and when I import them into mysql through phpMyAdmin, everything is ok, but the persian (Farsi) not shown correctly, also I use ' utf8_persian_ci ' collation, can anyone kindly plz convert this file into MySQL that farsi data shows correctly too? NOTE: farsi …

Member Avatar for BzzBee
0
104
Member Avatar for tanha

Hi. I want to add new ROW, which includes three TD as follow: 1. <td> caption </td> 2. <td> textfield </td> 3. <td> button </td> that should be mentioned that each textfield should have different id, and name started from one and go on. I figured out something, but two …

Member Avatar for madristaa
0
510
Member Avatar for tanha

Hi. I want to know how it is possible to export data through php to an already available template excel and word, and then how to read from those template? regards,

Member Avatar for ikinothman
0
86
Member Avatar for tanha

Hi everybody, I want to have a login form in Java, which comparing the username and password, according to MySQL database data, so I have the following code, just don't know where to add the select statement and how verify the username and password from MySQL with the JTextfield of …

Member Avatar for peter_budo
0
3K
Member Avatar for tanha

Hi. I want ot use the TinyMCE editor in my jsf code, but unfortunately there is error in using the init function, and also in eclipse when I copy the folder of the tinyMCE, there is warning sign on the folder. can any one help me through this issue ??? …

Member Avatar for ~s.o.s~
0
228
Member Avatar for tanha

Hi. I don't know whether this is the right place asking this question or no. I want to know, is it possible to use PHP code into JAVA code? if yes how?

Member Avatar for digital-ether
0
85
Member Avatar for tanha

Hi, We are a group and want to make a forum using the j2ee technology, and I need your guide through the following: 1. Should we use any FrameWorks ? if yes. which one is better and simpe ? 2. If not using any Framework, then what you suggest ? …

Member Avatar for abheinav
0
112
Member Avatar for praveeny
Member Avatar for stephen84s
0
91
Member Avatar for tanha

Hi. I want to know the best method of making auto installer for our application, like a page appears and asking for the mysql server information such as username and password and also database and so on, and also default account for the application? something similar to moodle and etc …

Member Avatar for tanha
0
210
Member Avatar for zamzianwar

hai friendz !!!! Any one have online examination codez in php ??? plz help me !if u hav send it 2 me........plz its urgent......................

Member Avatar for R0bb0b
0
94
Member Avatar for tanha

Hi. I am using netBeans 6.1 on windows XP, and when I create a java class and I create a frame inside that class? why I can not see the design of that class? I mean why I can not see the frame and also the control like buttons, text, …

Member Avatar for tanha
0
112
Member Avatar for tanha