Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
1
Downvoting Members
3
0 Endorsements
~16.7K People Reached
About Me

Till today my life is the lyrical dance on melodious moments and in future it will be a full-rhythmic song.

30 Posted Topics

Member Avatar for LastMitch
Member Avatar for LoanHensley
6
6K
Member Avatar for sireiz

I cannot sign in to my own server 2012 because it gives me an error that there is time or date difference between the client and server. i suppose my motherboard cell is consumed now but the user i am trying sign in is the administrator and it manages the …

Member Avatar for slcmarco
0
2K
Member Avatar for sireiz

Hi, I have a view say a Button, i made a border for it in a paint application, now i wwant to use that border as the border for my button, how can i do that in such a way that it looks well on all screen sizes?

Member Avatar for shivya_1
0
258
Member Avatar for sireiz

Is there a way to develop a GUI which has graph data structure at the backend so that if we want to have information about a particular node or edge, we just tap its corresponding GUI representation and the app gives us the required info?

Member Avatar for JamesCherrill
0
316
Member Avatar for sireiz

I am trying to iterate through a string and save the characters in a character array. It iterates perfectly and prints the characters but when I try to save the characters in the Array or in a List, it gives me NullPointerException. Can anyone point out the mistake I am …

Member Avatar for JamesCherrill
0
213
Member Avatar for sireiz

Hi all, Is it possible to use cloud storage services such as google drive or dropbox to be used as an online storage for my app? I am developing an app which will be using an online server or storage to retrieve media files like videos and pictures. I dont …

Member Avatar for peter_budo
0
300
Member Avatar for sireiz

Hi everyone, When i click on the ireport icon, it shows the splash screen but then nothing happens. I tried to override the default jdk path in ireport.conf file and changed it to the jdk path i am using but it didn't solve the problem. Then i uninstalled the software …

0
136
Member Avatar for sireiz

Hi everyone, Please help me to register the sql query exceutor in netbeans and java. I am using ireport 5.5.1 and netbeans 8.0 with jdk 8. The problem is that when i run the reports within netbeans, they run but when i build the project and run it from a …

0
195
Member Avatar for sireiz

Is there any syntax error in this code or query because i am not getting the required report? I have created a JFrame with JDatechoosr. When i select the dates and click view report, it gives me empty report while i know there is data within the specified date range. …

Member Avatar for sireiz
0
542
Member Avatar for sireiz

Is it possible for an entity to have existence, referential and identifier dependencies at the same time? For example, apartment and building are two entities and apartment is dependent on building. It has all three dependencies.

Member Avatar for Alberto Bucur
0
106
Member Avatar for sireiz

We want to make a software with our neighborhood map and roads with directions. What would be the best way to do it? Its a university project. Platform would be Android and windows.

Member Avatar for rubberman
0
190
Member Avatar for sireiz

I want to put a lot of searchable text in my software, What would be the best option for that, A database or file-Handling system? Platform will be Windows and Android.

Member Avatar for Ancient Dragon
0
140
Member Avatar for sireiz

Hi, I want to put urdu language text in a software to be searched. How can i do that? Software is like a lot of text and people can search through it to find specific sections or parts. And for those who don't know urdu, it is written like arabic.

Member Avatar for triumphost
0
123
Member Avatar for sireiz

Hi, I want to put urdu language text in a software to be searched. How can i do that? Software is like a lot of text and people can search through it to find specific sections or parts. And for those who don't know urdu, it is written like arabic. …

0
145
Member Avatar for sireiz

I have heard about WireShark software that what can it do. But it snif only my lan card. What if i wanted to snif the router that what other computers on the network are doing? Is there any way to do that?

Member Avatar for minimee120
0
150
Member Avatar for jdog1218
Member Avatar for DM Galaxy
0
252
Member Avatar for sireiz

What is the best and efficient way of redirecting streams from a parent process to child process. There are a number of ways i found out like boost.process, fork() and createprocess(). But what is the best way for windows?

Member Avatar for sireiz
0
256
Member Avatar for sireiz

I want to know how this function is working. I used qsort() function to sort the integers in an array and i found this compare() function on internet. It worked perfectly well but i cannot understand how is it working and what's its logic. Any help? int compare (const void …

Member Avatar for sepp2k
0
2K
Member Avatar for sireiz

I am facing a logical error in the function filewrite() but i cant figure it out, it all seems right. The sum of the array elements is shown on the screen but when it is written in the file, it is not in the correct format. #include<iostream> #include<cstdlib> #include<fstream> using …

Member Avatar for David W
0
219
Member Avatar for saadsattar

saad motherboard check krwao apna, agr mouse aur keyboard men b light nai arhi to. hoska he motherboard khtm hogya ho.

Member Avatar for best4earn
0
187
Member Avatar for desmondo

might be your monitor cable is damaged. might be your motherboard is damaged. it can be so many problems. sometime a hardware creates problems and does not allow the oc to boot. try removing some hardware like cd rom, hard drive, ram etc and then boot. you will find the …

Member Avatar for ss125
0
122
Member Avatar for dhiman.chetan
Member Avatar for Midnite1955
0
179
Member Avatar for sireiz

I am new to programming and i am now free for 2 months after my exams, i want to learn some basic and very necessary classes or their functions or objects which are used for file folder handling. Kindly suggest some methods which i can learn.

Member Avatar for sireiz
0
265
Member Avatar for sireiz

I have to write a code in which i want to use 3 dimensional array but i am reaaly confused that how 2 dimen array is indexed. 2x2 array can easily be indexed 00 01 10 11. so how a 3 dimen one can be indexed?

Member Avatar for Ancient Dragon
0
178
Member Avatar for sireiz

Before installing active directory services and promoting windows server to domain controller, i created 3 local users for my brothers but after joining the domain i only can see my user(administrator) and a user called other user which provide a way to sign in the local users but i cannot …

Member Avatar for Fowomola
0
197
Member Avatar for Captain119
Member Avatar for Wil 0' Wisp
0
223
Member Avatar for sireiz

I wrote a simple c++ program which takes a password and then shows a message for the intended person. Now i want to crack this program with another c++ program by using password cracker. How to use another c++ program to brute force this program?

Member Avatar for Suzie999
0
83
Member Avatar for sireiz

#include<iostream.h> #include<fstream.h> class studentinfo { private:/*Creating Private Data Members */ char* VUID; char* campusID; char* Studentname; char* Fathername; public: void Storefile();/* Function to Store Data in the File*/ char Display();/*Function to Read and then Display Data from the File*/ studentinfo(char*, char*, char*, char*);/*Constructor to initialize Data Members*/ ~studentinfo(); }; /* …

Member Avatar for sireiz
0
436
Member Avatar for sireiz

I want to use the data members to store the info on the file and then read and display them through these two member functions in the class but i can't think of syntax. i made global variables but didn't use the data members in the class. i stored and …

Member Avatar for Moschops
0
342
Member Avatar for sireiz

Kindly take look at this code, it is giving me an error in the main function. #include<iostream.h> #include<fstream.h> #include<cstdlib> #include<cstring> ofstream re; class studentinfo { private: char* VUID; char* campusID; char* Studentname; char* Fathername; public: void Storefile(char*, char*, char*, char*); char* Display() ; studentinfo(char*, char*, char*, char*); ~studentinfo(); }; studentinfo::studentinfo(char* …

Member Avatar for sireiz
0
199

The End.