How do you deal with Visual Basic 6.0 frm and frx files in source control?

前端 未结 3 1441
孤城傲影
孤城傲影 2020-12-16 11:34

This is always a pain, no matter what source control system I have used (Visual SourceSafe, CVS, ClearCase, etc.). The binary .frx files always cause a problem when merging

3条回答
  •  死守一世寂寞
    2020-12-16 11:44

    You need to just bite the bullet and include them in version control system. Unfortunately, they do contain information that isn't available anywhere else in the source. (The bitmaps added to ImageList controls, for example.) If you lose those files, you can't rebuild the application correctly.

提交回复
热议问题