C/C++ : SEGY Merge
C/C++ : SEGY Merge In my last post, I am create a method how to merge SEGY with cat and dd command. Now, I am create a C/C++ SEGY merge code. This is the main C/C++ : SEGY Merge code : void usage() { printf(“\nSEGY_MERGE \n”); printf(“by toto (toto-share.com)\n\n”); printf(“segy_merge segy1 segy2 segy3 … segyn [...]
QT : Setting Text Under Tool Button in QToolBar
QT : Setting Text Under Tool Button in QToolBar I am create a designer with QDesigner and try to add toolbar in that mainwindow. But I dont see text under toolbutton when running my program. This is how look my program : The problem is I want to add text under Tool Button in QtoolBar. [...]
Qt : Convert QString to char
Qt : Convert QString to char QString have very much feature compared with char data type. But, in some of conditions, we need to Qt : convert QString to char datatype. This is a sample function how Qt : Convert QString to char datatype : const char *QString2char(QString str) { QByteArray byteArray; const char *cstr; [...]
Qt : conversion in binary, decimal and hex
Qt : conversion in binary, decimal and hex This is a basic article for Qt : conversion in binary, decimal and hex. From this tutorial, you can know how Qt : conversion in binary, decimal and hex. Qt have rich class to convert from a data from one data type to other. From this tutorial, [...]
