Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
75% Quality Score
Upvotes Received
4
Posts with Upvotes
4
Upvoting Members
2
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
2 Commented Posts
~12.6K People Reached
Favorite Tags

60 Posted Topics

Member Avatar for Hakoo

0 down vote favorite I am trying send Newsletter with images, I am able to send email but not getting images, I tried to search lots of solution but its not working.Please check this link for [Simple Newsletter](http://www.shooters.com.au/newsletter/newsletter.html) When I am trying to email this newsletter, I am getting newsletter …

Member Avatar for geniusvishal
0
395
Member Avatar for Hakoo

I am developing app where I need to capture an Information from Webpage after giving credentials automatically. Some how I managed to do Automatic login and redirection of page. Here is my code : HttpWebRequest req = (HttpWebRequest)WebRequest.Create("https://abcd.com.au/categories/A_dfn/sdf"); HttpWebResponse res = req.GetResponse() as HttpWebResponse; StringBuilder sb = new StringBuilder(); byte[] …

Member Avatar for Hakoo
0
517
Member Avatar for Hakoo

Hello, I am facing this difficulty here : First I'll give code public class Game extends JFrame { private JPanel contentPane; //private JPanel settingPane; protected JLabel lblPlayerName2; // I am using this one for my testing JLabel[] lbls = new JLabel[9]; private final ButtonGroup buttonGroup = new ButtonGroup(); public static …

Member Avatar for Hakoo
0
292
Member Avatar for Hakoo

Hello All, I want to create new pop window like this site have while login. How can I do this? Thanking you, Hakoo Desai.

Member Avatar for sunnivasa
0
611
Member Avatar for Hakoo

Hello All, I am devolping one desktop application for myself, in that I am using dataGridview. In that, I have 2 Columns which represent time. I created one custom control which represents hh:mm format. Now my problem is I want to integrate my custom control to those 2 columns. How …

Member Avatar for bhagawatshinde
0
137
Member Avatar for Hakoo

Hello All, I just want to know how Can I disable button for some conditions? Say, if I have session- Val. If its -1 then button must be disabled otherwise Enable.. Thanks, Hakoo Desai...

Member Avatar for code739
0
139
Member Avatar for Hakoo

Hello all, I am trying to validate my ASP.NET page in W3C validator. I am getting following errors. Can anyone help with this? No DOCTYPE found! Checking XML syntax only. The DOCTYPE Declaration was not recognized or is missing. This probably means that the Formal Public Identifier contains a spelling …

Member Avatar for mikev2
0
241
Member Avatar for Hakoo

Hello, I am developing e-store in asp.net. I would like to develop it in industrial standards. So, how can I do it? Should I use MVC framework? If yes, Can I integrate it with Visual Studio 2008? Thanks, Hakoo Desai.

Member Avatar for kvprajapati
0
209
Member Avatar for happygeek

By doing this, Apple proved that Samsung is strong enough to give competition. What you expect how would be tablets? if those are not in shape of rectangle than how it should be? Then what is matter of copying design? There are lots of dummies of iPhone, why apple is …

Member Avatar for Hakoo
1
2K
Member Avatar for Hakoo

Hello guys, I am new in Web Site Designing, before I've worked on Web Application Development. I am wondering with how to maintain layout of page when browser resized. I am attaching here snapshots. [ATTACH]22106[/ATTACH] [ATTACH]22107[/ATTACH] Any information regarding Web Designing is welcomed. Thanking You, Hakoo

Member Avatar for almostbob
0
151
Member Avatar for Hakoo

Hello All, I have 1 TB External Hard Disk. So, I have Partitioned it into 3 Drives. For this, I have used this Approach : Using fdisk, I made two Partition, and then using 2nd Partition, I divided them. By doing this, All Partitions are PRIMARY PARTITIONS. Now, In all …

Member Avatar for Cross213
0
186
Member Avatar for Hakoo

Hello All, I am very new to Android. I installed only "SDK Platform Android 3.1, API12, Revision 2" and related to their stuffs. I am getting this error after creating new project: [CODE][2011-06-26 14:43:38 - Dex Loader] Unable to execute dex: wrapper was not properly loaded first [2011-06-26 14:43:38 - …

Member Avatar for Hakoo
0
130
Member Avatar for jrosh

Hello, If u want to see whether your msg is sent or received in emulator, that you can check with help of Network Monitor. For this, just see the Preference of WTK. Hope this will help you.

Member Avatar for Hakoo
0
157
Member Avatar for lsvife

As peter_budo told, use ItemStateListener(), and implement Abstract Method of it, [CODE]public void itemStateChanged(Item item) { } [/CODE] Set this listener to your form. and then write following code : [CODE]public void itemStateChanged(Item item) { if( item == txtFld1) { // Do something when State change of TextField1 } if( …

Member Avatar for Hakoo
0
141
Member Avatar for jrosh

Hello, I don't know whether you find your answer or not but I was trapped in this question from last 5 months. I made one Application which import all data into Record Store. For these, its simple concept. You connect your Midlet to Servlet. Servlet will retrive your data and …

Member Avatar for jrosh
0
97
Member Avatar for Hakoo

Hello Friends, I have 6 to 7 threads which are running parallely. Thing is I have to put Thread.Sleep() between each threads. How Can I optimize it? [CODE]else if (__selectedString.equals("Master DataInput")) { try { if (RecordStore.listRecordStores() != null) { System.out.println("IT FOUND RECORDSTORE ......"); RecordStore.deleteRecordStore("Company"); RecordStore.deleteRecordStore("Product"); RecordStore.deleteRecordStore("Model"); RecordStore.deleteRecordStore("Customer"); RecordStore.deleteRecordStore("Sales"); System.out.println("Delete All …

Member Avatar for Hakoo
0
150
Member Avatar for ankurmawanda

Hello, Hope, you know to connect Servlet to your database. So here, Servlet will fill the gap between Midlet and Database. JME will work for all Java-Enabled Mobiles, its not concern that which mobile you are using, but that mobile must be Java- Enabled.

Member Avatar for Hakoo
0
105
Member Avatar for martosio

Hello, Table is not Primary Item of JME. NetBeans provides Table Component for visual midlet. Otherwise you can draw the table using Canvas. LWUIT also provide this kind of Table. Hope, these 'll be useful for you.

Member Avatar for Hakoo
0
147
Member Avatar for Hakoo

Hello Friends, I have created application which can be work In Online Mode(GPRS) and Offline Store(Recordstore). Its working fine in default configuration and touch configuration. But its not working on QWERTYDevice(In emulator as well as On real Mobile Device(Nokia X2-01)). In Emulator I am getting This Error : [CODE=text] java.lang.NegativeArraySizeException …

Member Avatar for Hakoo
0
170
Member Avatar for Hakoo

Hello Friends, I have checkbox which is generated dynamically. Here the code is : [CODE] <?php $i=0; while($row1 = mysql_fetch_array($result)) {?> <label><?php echo $i++ ?><input type="checkbox" name="chk_list[]" value="<?php echo $row1['Veh_id'];?>" class="txt" onClick=""><?php echo $row1['Veh_nm']; ?></input></label></br> <?php } ?> [/CODE] Now, I want to insert IDs and related information which checkboxes …

Member Avatar for vibhaJ
0
209
Member Avatar for Hakoo

Hello All, My external hard disk(WD) of 1TB was fell down from the desk. Now the thing is, when I tried to connect it, I asked for formatting, So, I denied it. Afterward again when I tried to connect it, its getting detected, the white light on HD was blinking, …

Member Avatar for usahomegoods
0
143
Member Avatar for Hakoo

Hello Friends, I am working in JME. Now, I have situation in which, I suppose to connect with Database which has been used with PHP. So, How can I access to Mysql? As usual same as to connect mysql with JDBC? Is Mysql and Mysql in WAMP Server different? Please …

Member Avatar for diafol
0
202
Member Avatar for Hakoo

Hello Friends, I am working in JME. Now, I have situation in which, I suppose to connect with Database which has been used with PHP. So, How can I access to Mysql? As usual same as to connect mysql with JDBC? Is Mysql and Mysql in WAMP Server different? Please …

Member Avatar for smantscheff
0
200
Member Avatar for Hakoo

Hello Friends, I have one problem that, I am passing query string from Mobile to Server. Now problem is Spaces and some symbols are not allowed in URL. So,I encoded somehow before sending it. Now the problem, how to decode(I know to decode by using URLDecoder.decode(Request.getQueryString)) and retrieve the values? …

0
101
Member Avatar for Hakoo

Hello all, I have three table name with same data structure. So, I want to insert my data through store procedure by passing table name as variable with my data. Is it possible? Thanking You. Hakoo Desai.

Member Avatar for Hakoo
0
181
Member Avatar for Hakoo

Hello all, I have taken CheckBox List and elements are , [LIST] [*]Insert [*]Edit [*]Delete [*]View [*]All [/LIST] Now, I want functionality like if I select "All", rest of 4 should be selected and if I deselect it all rest should be deselected. For this I have used this code …

0
69
Member Avatar for Hakoo

Hello all, We have developed two independent applications on individual systems. But both are developed in NetBeans 6.9 using Visual Midlet(VMD). Now problem is to merge those applications into one. Is this possible? How can I do this? Thanking You, Hakoo Desai.

Member Avatar for peter_budo
0
136
Member Avatar for Hakoo

Hello all, I have developed one application which import all databases into recordstore. This executes successfully, but the problem comes when I try to Filter my records. here the code is : [CODE]public void itemStateChanged(Item item) { if (item == choiceGroup_ProductCompany) { RecordFilter filter = new RecordFilter() { public boolean …

Member Avatar for Hakoo
0
148
Member Avatar for jrosh

HEllo, What About JavaFX?? Does it work for Java Enabled phones?

Member Avatar for jrosh
0
161
Member Avatar for Hakoo

Hello All, I had installed MySQL 5.1. But due to instance problem I deleted some registries from REGEDIT. Now, I cannot run setup files of MySQL as well MySQL GUI tools.I am getting this error "Configuration data for this product is corrupt. Consult the Administrative Personnel". I tried to restore …

Member Avatar for rch1231
0
148
Member Avatar for jrosh

Hello jrosh, Can you provide some snaphshots of your code, where exactly Exception is throwing? Are you using any Server in your application?

Member Avatar for Hakoo
0
65
Member Avatar for Hakoo

Hello all, I have created Servelets which are used by midlets and having Database in MySQL. I have deployed servelets in Apache Folder. but now question is how to setup Database? Thanking You, Hakoo S Desai.

Member Avatar for peter_budo
0
179
Member Avatar for Hakoo

Hello all, I am retrieving data from servlet to midlet. Now coming data is whole string. but now I want to chop it into different words. here my code is : [CODE] HttpConnection conn = (HttpConnection) Connector.open(url); StringBuffer sb = new StringBuffer(); conn.setRequestMethod(HttpConnection.GET); conn.setRequestProperty("Content-Type", "Application/x-urlformencoded"); InputStream is = conn.openInputStream(); byte[] …

Member Avatar for Hakoo
0
601
Member Avatar for Hakoo

Hello Friends, I want to synchronize the database from server to mobile application. I googled so much. I got much information on : [LIST] [*]DB2 Everyplace [*]IBM CloudSpace [*]PointBase(Not able to download) [*]Sync4j [*]SyncML [*]Data Sync API(Not able to find) [/LIST] Now I am confused to which one to select? …

Member Avatar for Hakoo
0
176
Member Avatar for Hakoo

Hello, I have installed DB2 Everyplace, it installed successfully but not able to configure. Getting Error while try to configure it. The error is like this : [CODE] [exec] UPDATE DATABASE CONFIGURATION FOR DSYMSGDB USING MAXLOCKS 50 [exec] SQL1032N No start database manager command was issued. SQLSTATE=57019 [exec] SQL1032N No …

0
132
Member Avatar for Hakoo

Hello, I have developed application in NetBeans using VMD, which add, edit, view and delete record using RecordStore. I can successfully add and view RecordStore. I am finding difficulty to Edit/Delete Record. To Edit(Update)/Delete, I maintained new form, used ChoiceGroup.Popup, which retrieve IDs from Record-Store. Here what I am getting …

Member Avatar for Hakoo
0
149
Member Avatar for Hakoo

Hey all, I am getting confused that I want to create database in J2ME. I did not get any other options rather than RECORD STORE.So I created them, and using that as my database. I get some detail about PointBase database, but not able to understand that. Can anyone Tell …

0
76
Member Avatar for sach_ak47

OK, Here so many are confused to make/create Jar File. Actually, We(Developers) are not creating Jar/Jad file, they are created after Compling(As Peter_Budo said) and if you want to create it, then (This process for NetBeans) Select Project Name in PROJECTS tab and select DEPLOY. The JAR and JAD file …

Member Avatar for Hakoo
1
944
Member Avatar for Hakoo

Hello, I want to add row and column dynamically in TableItem used in VMD - Netbeans. Actually, I want to fetch records from Record Store and show that into Table. How can I do this?

Member Avatar for peter_budo
0
378
Member Avatar for Hakoo

Hello, I am new in J2ME, I have created one application which stores Name, Qty, Price and Total. I can manipulate RecordStore in this application. Now, I want to send this data to some other Remote Place, i.e server or through SMS. Is there any way to do this?

Member Avatar for peter_budo
0
122
Member Avatar for Hakoo

Hello All, I have one android Application, I want to use is in BlackBerry, Is it possible to do? Are There any tools or portability such that I can use Android application to BlackBerry?

0
61
Member Avatar for Hakoo

Hello All, I have confusion in command Class. Its constructor has 3 parameters. First 2 parameters I can understand. but [CODE]Command.Screen[/CODE] and priority parameter I could not understand. I tried to Google also, and refer different kind of ebooks, but still i cant understand. So please help me.

Member Avatar for Hakoo
0
206
Member Avatar for Hakoo

Hello all, After very longtime I am sending thread on this. Before I used to send threads in JSP. But now I am working on J2ME. I have installed " JAVA ME SDK PLATFORM" when I run any MIDlet getting JIT error. This error is related to each PC, I …

Member Avatar for peter_budo
0
52
Member Avatar for adiiz
Member Avatar for Hakoo

Hello Every one, I am new in ASP.NET. And learning controls. I am facing problem while using LoginView control. Can Any one make me understand by giving explaination with example. I tried with various book, but still I am not able to understand.

Member Avatar for dnanetwork
0
96
Member Avatar for aashishdaniweb

Dude, here no one knows. I m only struglling from more thn 2 weeks. u can chk my thread "Javamail APIs". If u know thn help me.

Member Avatar for Hakoo
0
188
Member Avatar for amrideep

You can try this. I am new in JSP but i m making project in jsp, which use sessions. so its working. try this. in a.jsp [CODE] HttpSession s =request.getSession(true); String s1 = "Amrita"; s.setAttribute("ana",s1);[/CODE] in b.jsp [CODE] HttpSession s =request.getSession(); String ot = (String)s.getAttribute("ana"); out.Println(ot); [/CODE] try ths n …

Member Avatar for Dharmendra
0
86
Member Avatar for Hakoo

Hey All, I m able to generate report for given table using iReport. Now, my question is, how can I genrate report for every user. For example, each tester adds their data in bubtbl. Now, i want to generate report for each user respective their datas. Please help me.

0
50
Member Avatar for Hakoo

Hello friends, I am making Bug Tracking System project, which is intranet base project in JSP. I want to use e-mail facility using JAVAMAIL APIs. How can I use it? What i need? I am new in JSPs., and dont know about JavaBeans. How to install STMP server n configure …

Member Avatar for jwenting
0
110
Member Avatar for mishra.bibhutib
Member Avatar for Hakoo
0
37

The End.