Since that I can use Qt creater to open main.ui, But why I can't?

1

I had download QT creator and I am not familiar with that software.

I just can't use QT to open my "main.ui" file. Why?

I had chmod 777 & chown angela . All thing is done , But still I can't?

It shows that "main.ui" is an executeable text file , why?

Angela

Posted 2011-03-25T01:28:29.120

Reputation: 49

Answers

0

The *.ui file is just xml so any text editor will be able to open and see the contents. But making changes to the xml with out understanding how QT will interpret it will give you endless problems. Best to just use QT designer to edit it.

Make sure you use the same version of QT designer as created the file so that you don't create incompatible properties.

Right at the top of the *.ui file you will find

<ui version="4.0">

in version 4 qt designer and

<UI version="3.3" stdsetdef="1">

in version 3 qt designer

nelaaro

Posted 2011-03-25T01:28:29.120

Reputation: 9 321