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

I am having two controllers. one is LoginScreenController.java and other is HomeScreenController.java. in loginscreencontroller, i am having button when clicked on that buton it will open homescreen controller. In HomeScreenController i am having TextField and a Ok button.I will fill some data in TextField and click on Ok Button. Here …

Member Avatar for SynThiicQ
0
833
Member Avatar for narlapavan

Hi, I am having Two controllers One is LoginScreen and other is HomeScreen. In Login Screen i am having one TextField(txtData is variable name) ane one button (btnOk is var name). On clicking ok button it will open HomeScreen. In HomeScreen i am having One TextField(txtFill is var name) and …

0
162
Member Avatar for narlapavan

my code: class A{ Vector<String> s = new Vector<String>(); } public class Vec { /** * @param args the command line arguments */ public static void main(String[] args) { A a = new A(); a.s.add("String1"); a.s.add("String2"); a.s.add("String3"); a.s.add("String4"); a.s.add("String5"); Vector<A> vecA = new Vector<A>(); vecA.add(a); System.out.println("Size of vector is "+vecA.size()); …

Member Avatar for milil
0
213
Member Avatar for narlapavan

class A{ Vector<String> s = new Vector<String>(); } public class Vec { public static void main(String[] args) { A a = new A(); a.s.add("String1"); a.s.add("String2"); a.s.add("String3"); a.s.add("String4"); a.s.add("String5"); Vector<A> vecA = new Vector<A>(); vecA.add(a); System.out.println("Size of vector is "+vecA.size()); // here i am getting size one a.s.clear(); a.s.add("String6"); a.s.add("String7"); a.s.add("String8"); …

Member Avatar for scudzilla
0
268
Member Avatar for narlapavan

I want rich textbox control in java in nebeans, where i can able to paste content from documents. Here content means not only plain data but also tables from ms-word documents. I tried above feature using "jeditorpane" but i am unable to retain table structure. please suggest me how to …

Member Avatar for Phaelax
0
357
Member Avatar for narlapavan

Hi, i am using netbeans 7.0.1, When i copy a table from ms-word document and paste it in editorpane or text area palette, i am unable to retain same table strucure i.e with no borders.How to do it and which control i have to use. Thanks.

Member Avatar for Ewald Horn
0
119
Member Avatar for narlapavan
Member Avatar for narlapavan

#include<iostream> #include<vector> #include<algorithm> using namespace std; class Cords { public: int x,y,z; }; class Object:public Cords { int a,b,c; public: vector<Cords> vCords; void insertCords(); void getCords(); }; void Object::insertCords() { Cords theCords; int x=1; do { cout<<"Enter X:"<<endl; cin>>x; cout<<"Enter a b c:"<<endl; cin>>a>>b>>c; theCords.x=a; theCords.y=b; theCords.z=c; vCords.push_back(theCords); }while(x!=0); } …

Member Avatar for deceptikon
0
219
Member Avatar for narlapavan

...how to update system time permanently in solaris through c++. ...how can i login into superuser(su) account through c++ code in solaris.

Member Avatar for dpa.clt
0
163
Member Avatar for narlapavan

i am working on solaris environment. i want find size of a file on remote system.. i.e at present i am in user1 system, from user1, i want to find size of a file in user2 system ...

Member Avatar for thekashyap
0
64
Member Avatar for narlapavan

i am using QT software in solaris, i opened remote system through QFtp methods i.e.. connectToHost() after that, loged in through login(). now my problem is, i am trying to get data from remote system, through int get ( const QString & file, QIODevice * dev = 0 ) at …

Member Avatar for Topi Ojala
0
217
Member Avatar for narlapavan

when i run chkdsk command on my pc, it showing 28GB in bad sectors how to solve this WARNING! F parameter not specified. Running CHKDSK in read-only mode. CHKDSK is verifying files (stage 1 of 3)... File verification completed. CHKDSK is verifying indexes (stage 2 of 3)... Index verification completed. …

Member Avatar for caperjack
0
196
Member Avatar for narlapavan

how to known whether system is available or not at the time of start up of operating system in unix systems

Member Avatar for L7Sqr
0
136
Member Avatar for narlapavan

first i am creating socket, with that socket descriptor i am sending some no. of bytes through sendto(....) function. At the time of receiving through recvfrom(....) function, my code was hanging if the specified destination address is not available. Suppose if destination is available the it's working correctly... Why this …

Member Avatar for dkalita
0
219
Member Avatar for narlapavan

2D vector data types should be different or same only .. for ex:: for one sub script with int data type and with another subscript with class name is it possible to declare with diff. data types

Member Avatar for Ancient Dragon
0
143
Member Avatar for narlapavan

i have developed a GPS proj. in solaris now i need to invoke this application at the time of operating system start up only. In which location i have to keep this application....

Member Avatar for ybkumar77
0
65
Member Avatar for narlapavan

how to copy data from one system to another in solaris.. i have tried rcp,scp commands but some times its not working.... tell me if there are any other commands other than rcp and scp .

Member Avatar for ~s.o.s~
0
105
Member Avatar for narlapavan

i have done one proj.. in solaris where the data comes from lower level higher level at the time of saving data the application is hanging. how to use thread concepts for not hanging data..

Member Avatar for daviddoria
-1
135