Click here to Skip to main content
15,903,362 members

Comments by Ramiien (Top 36 by date)

Ramiien 9-Dec-15 6:44am View    
Deleted
My input is in Qstring(while reading from .Txt file)
QString str = "0x00ff2120ff040101";
for Bitwise operation i need Hexadecimal format in quint64.
quint64 num = 0x00ff2120ff040101;
int EEC = (num >> (8*6)) & 0xff;
int ER = (num >> (8*5)) & 0xff;
your suggestion please??
Ramiien 9-Dec-15 6:16am View    
Problem i am facing is I want to compare two values. Value from Network is in QString str= 20FF. and value in QHash is int value= 20FF.
Ramiien 8-Dec-15 3:45am View    
QString::arg always return me string format. what i am looking for is to get output in quint64
Ex.
(Required output) quint64 myoutput= 0xf3a.
(output with arg) QString myoutput= "0xf3a".
Ramiien 20-Nov-15 4:36am View    
i posted my code in solution 3. why its not reading the file content??
Ramiien 19-Nov-15 7:07am View    
with QFileinfo control is not coming inside the foreach loop. ?

foreach (QFileInfo fileInfo, dir.entryInfoList(filters, QDir::Files) )