Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~6K People Reached
Favorite Tags
Member Avatar for danielagaba

Hi, I am trying to create an application like tweetdeck which has a mini-browser built in so that users can recieve custom feeds/updates from my shopping website. Unfortunately, I am not sure where to start in creating such an application. Can I create it in java? and what type of …

0
106
Member Avatar for danielagaba

Hi I've run this code and i get no errors but my form data is not saved on the dataset or database. This is the click event code. [code] Dim conn As New SqlConnection("Data Source=.\SQLEXPRESS; AttachDbFilename=|DataDictionary|\TMSDB.mdf;Integrated Security=True Instance=True") Dim ds As New DataSet conn.Open() Dim Adp As New SqlDataAdapter("select * …

Member Avatar for jigar.makhija
0
962
Member Avatar for danielagaba

hi i am trying to, on a button click, display data retrieved from mysql database in a text area but having no success. Below is the code i used. All help given is appreciated [CODE] print "<center><TEXTAREA NAME=news ID=news COLS=70 ROWS=10>".$news."</TEXTAREA></center>"; if(isset($_POST['show2'])){ $cn = connect_db(); $cn_sql = "SELECT message from …

Member Avatar for php_dev
0
688
Member Avatar for danielagaba

hi i'm trying to connect a midlet running on my emulator (jwtk 2.5.2) to an apache tomcat server which has the servlet code. when i run the emulator instead of displaying the name i posted in the midlet code after connecting to the server, the screen displays the servlet code. …

Member Avatar for nms12
0
285
Member Avatar for danielagaba

Hi, I have a table populated by an sql query joining various tables. in every row i have a dropdown populated by another sql query and button (which for testing sakes) echos the value of the dropdown selected. My problem is for the first row of my table, whatever dropdown …

Member Avatar for danielagaba
0
171
Member Avatar for danielagaba

hi I came up with this code to help me convert a string into an integer array but i keep getting a null exception when i run it and i am not sure how to fix it. [CODE] import java.io.*; import java.lang.reflect.Array; public class test { static String message; static …

Member Avatar for JamesCherrill
0
323
Member Avatar for danielagaba

hi i'm having some trouble with objectinputstream. i wanted to know if it is possible to validate whether the contents are string or integers then i also wanted to ask how i could convert the contents to int []. For the latter i tried converting it to char [] first …

Member Avatar for stevanity
0
122
Member Avatar for danielagaba

Hi, i have eclipse indigo 3.7.1 and running xampp 1.7.4 with the tomcat plugin. I followed the tutorial at [URL="http://www.vogella.de/articles/EclipseWTP/article.html"]http://www.vogella.de/articles/EclipseWTP/article.html[/URL] and all went well till i reached the jsp/servlet tutorial where i keep getting a HTTP 404 error saying "[B]de.vogella.wtp.jsp.controller[/B]" is unavailable, preventing me from navigating amongst the pages. Thanks.

0
45
Member Avatar for danielagaba

hi i wrote code for a midlet that plays videos from a webserver. my problem is on an emulator, it works fine. when i test it on an actual device that uses gprs to connect to the internet it doesnt play, though it looks like it is loading (i am …

Member Avatar for peter_budo
0
73
Member Avatar for danielagaba

hi i have a piece code for a midlet that plays videos. Since it is not being streamed, i know the video file is first downloaded before it is played. When i try it on an actual device using gprs, i cannot tell whether the file is actually being downloaded …

0
58
Member Avatar for danielagaba

hi i am using Series 40 5th edition sdk to test some midlets connectivity. the applications work fine and connect to both local and remote servers on the java wireless toolkit emulators. but then i try the same applications on the Series 40 sdk i get an exception saying error …

Member Avatar for peter_budo
0
159
Member Avatar for danielagaba

hi a piece of code i have requires a files location and name for it to retrieve its content. instead of hard coding it i would like to simply have a window open that enables me to select it from my directory. is there a way i can do this …

Member Avatar for rajarajan2017
0
78
Member Avatar for danielagaba

hi i'm trying to retrieve content from a .csv file and load it into a mysql database. i already created a corresponding table in my database with matching table names but when i try to use the following code, only one row is filled and with 0's. [CODE] <?php $connection …

Member Avatar for Manuz
0
97
Member Avatar for danielagaba

hi in my j2me code, i have a choice group dropdown whose values are got from web content as a string array. i am using the following for loop to get the selected value of the choice group [CODE] for(int i=0;i<2;i++) { if(cust.isSelected(i)) { f = cust.getString(i); } } [/CODE] …

Member Avatar for peter_budo
0
63
Member Avatar for danielagaba

hi i'm trying to design a universal video player with J2me and was successful in creating one that played mpeg vidoes online. my problem is mpeg can only be played on specific devices and .3pg is a more common format. unfortunately i havent found much information on how i can …

Member Avatar for peter_budo
-1
79
Member Avatar for danielagaba

hi i want to display text from multiple web pages on the same page using j2me. I am currently displaying information from only one web page and i think i can accomplish this with threading but i am unsure on how to structure my threads to enable this. Thanks

0
77
Member Avatar for danielagaba

hi i designed an application in VS 2008 and i'm using .rdlc reports. My problem is when i deploy on the client machine and try to generate a report i get an error saying 'Operation must use an updatable query' then when i click the details See the end of …

Member Avatar for lolafuertes
0
453
Member Avatar for danielagaba

hi i have a choice group in my midlet that i want to populate with an array of results that i get from a mysql database using php but i am having little luck. can anyone help? thanks

0
51
Member Avatar for danielagaba

hi i'm trying to design a web application that a sales department can use to generate statistical information from data in an excel document. my problem is they want the option of generating statistical information in particular groupings (week and month) in an excel document. will appreciate any help on …

Member Avatar for sergb
0
63
Member Avatar for danielagaba

hi i'm pulling data from a mysql database and displaying it in an html table. my problem is i want to be able to have the information broken into pages so that users dont have to scroll down a page but i'm not sure how to do this. thanks

Member Avatar for diafol
0
91
Member Avatar for danielagaba

hi i have a piece of code that creates and inserts content in a csv file. is their script that i can use to save the csv file in a predefined folder in my file system without a prompt?

0
52
Member Avatar for danielagaba

hi i'm pulling multiple rows of data from my database to display in a csv document but every row it displays is the same as the first row. appreciate the help. [CODE] <?php session_start(); include 'include.php'; connect_db(); $filename = date("Ymd")."_summary.csv"; header("Content-type: application/csv"); header("Content-Disposition: attachment; filename=$filename"); $date = date("Y/m/d"); $sql = …

Member Avatar for colweb
0
74
Member Avatar for danielagaba

Hi, I'm displayin data in my database in a table form using a for loop . In my loop i added a radiobutton so that a selected radio button would identify the row on the table. This is the code is used: [CODE] for($j=0;$j<=$nrows2;$j++){ while($row = mysql_fetch_row($result)){ print "<tr><td>".$row [0]."</td><td>".$row …

Member Avatar for CFROG
0
132
Member Avatar for danielagaba

hi i'm trying to create an application that sends information through a query string to a php page that stores the information in an sql database. when i run the application it brings no errors and displays the form at the end of the connection method but no data is …

Member Avatar for peter_budo
0
76
Member Avatar for danielagaba

hi i'm using the following code to enable a midlet to pull information from a php file. my problem is when i run the midlet in the wireless toolkit emulator, instead of showing the information, it displays "Error ...". I am using wamp to host the php page J2ME code: …

0
85
Member Avatar for danielagaba

hi i wanted to inquire about two things. First, is it possible to connect two phones that both possess wireless cards to each other without there necessarily an access point, if so how could i, in theory, use it to design a messaging application in J2ME. thanks

Member Avatar for peter_budo
0
91
Member Avatar for danielagaba

Hi When i use the currency expression in my format string, by default it brings the Pound symbol (£). How can I edit my code for it to be a dollar sign? [code] Private Sub txtPrepaid_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtPrepaid.TextChanged If txtPrepaid.Text <> "" Then …

0
42
Member Avatar for danielagaba

hi i'm trying to add a feature to an application where users of my application (installed on different computers) can share access db files when updates are made by one user but dont know where to start. Is there a tutorial i could look at or sample source code?

Member Avatar for TomW
0
175
Member Avatar for danielagaba

hi, i'm using the code below to insert data into an access db but keep gettin the error "Datatype mismatch in criteria expression" [code] total = Integer.Parse(txtMonth.Text) * Integer.Parse(rent.Text) Com.CommandText = "Insert into Report Values (?,?,?,?,?,?,?,?,?, NOW())" With Com.Parameters .Add("@ID", OleDbType.Integer).Value = CID .Add("@Tenant", OleDbType.VarChar).Value = cboTenant.Text .Add("@type", OleDbType.VarChar).Value = …

Member Avatar for TomW
0
80
Member Avatar for danielagaba

hi i developed an app in VS 2008 with vb.net which was intended to have reporting features but unfortunately deploying with crystal reports was too hard so i chose to go with .rdlc but i'm completely clueless on how to use it, whether it has a report viewer, how it …

Member Avatar for CodeDoctor
0
107