NO

Author Topic: Version 7.00, Release Candidate 1 available  (Read 14788 times)

Offline TimoVJL

  • Global Moderator
  • Member
  • *****
  • Posts: 2091
Re: Version 7.00, Release Candidate 1 available
« Reply #15 on: April 17, 2012, 09:47:26 AM »
Example in attachment.
May the source be with you

czerny

  • Guest
Re: Version 7.00, Release Candidate 1 available
« Reply #16 on: April 17, 2012, 01:55:33 PM »
Is this a html page?
Do you have found the source of this?
I have searched for the key words 'ActionLinks' and 'smorgasbordet' in my Pelles C directory, but could not find it.

czerny

Offline Christian

  • Administrator
  • Member
  • *****
  • Posts: 142
    • http://www.pellesc.de
Re: Version 7.00, Release Candidate 1 available
« Reply #17 on: April 17, 2012, 01:59:06 PM »
The html code is within the resource dll for each language.
www.pellesc.de - German PellesC mirror (now available in german and english)

czerny

  • Guest
Re: Version 7.00, Release Candidate 1 available
« Reply #18 on: April 17, 2012, 02:36:19 PM »
Ok! I have found it.

The urls starting with res://... and app:// are special. Are they implemented by Pelles C?

I realize now that this is the start page iZzz32 was talking from.

So this is the IE6 problem.

I thinck the default browser should be used instead. Many people do not use IE.

czerny

CommonTater

  • Guest
Re: Version 7.00, Release Candidate 1 available
« Reply #19 on: April 17, 2012, 03:54:51 PM »
The html code is within the resource dll for each language.

This is using the browser control from Windows Internet ... ya?   

If so, then people will also need to update their systems to produce useful software using the Windows Internet APis...  A lot of websites with anything but simple text content will no longer load up with IE6, it either produces errors or the website rejects it... So an update would make sense on several fronts.

Offline Bitbeisser

  • Global Moderator
  • Member
  • *****
  • Posts: 772
Re: Version 7.00, Release Candidate 1 available
« Reply #20 on: April 17, 2012, 05:50:19 PM »
So this is the IE6 problem.

I thinck the default browser should be used instead. Many people do not use IE.
Even if you do not use IE actively, you should still keep it updated, as a lot of software might take use of web API calls that plainly assume IE to be there. And while I loath IE myself, an updated IE7/8/9 is still safer than an unpatched IE6 lingering on your disc...

Ralf

Offline Stefan Pendl

  • Global Moderator
  • Member
  • *****
  • Posts: 582
    • Homepage
Re: Version 7.00, Release Candidate 1 available
« Reply #21 on: April 17, 2012, 08:11:31 PM »
The browser might use the ATL control which in turn seems to be registered only by IE for HTML content.

IE is an essential part of Windows and therefore it must be up to date even if you don't use it.
---
Stefan

Proud member of the UltraDefrag Development Team

Offline Christian

  • Administrator
  • Member
  • *****
  • Posts: 142
    • http://www.pellesc.de
Re: Version 7.00, Release Candidate 1 available
« Reply #22 on: April 17, 2012, 10:52:25 PM »
It uses the Browser control. And it is also my opinion that updating your IE is extreme important.
www.pellesc.de - German PellesC mirror (now available in german and english)

Offline Pelle

  • Administrator
  • Member
  • *****
  • Posts: 2266
    • http://www.smorgasbordet.com
Re: Version 7.00, Release Candidate 1 available
« Reply #23 on: April 17, 2012, 11:45:28 PM »
Thank you, all!

Yes, I use Microsoft's WebBrowser control through COM (like it says somewhere in the help file...) Nothing version-specific in the code AFAICT, but if you have problems with IE you will likely have problems with this control too. I think a working WebBrowser control is more important than the actual IE version, but I may be mistaken... A recent IE version is a very good idea anyway.

The res: protocol is implemented by Microsoft, and the app: protocol is implemented by me. This means I could - in theory - add more special link actions. Since there is some empty space on the start page: if you have ideas about other links/actions to add, please post them and we'll see (but perhaps in a different thread...). Remember that each translation has it's own page, so there could even be specific German (web-)links, for example.

(For the record: RC1 was uploaded to get C11 mode tested early, but it's minus a number of recent bug reports (and a request) - the bugs I can reproduce should be fixed in RC2, but we'll see about that. I have already modified the resource compiler to accept a keyword as a user-defined resource type name (like: id HELP "file"), so that enhancement will certainly be in RC2.)

Now, let's do something useful for a change - like coding...


/Pelle
/Pelle

CommonTater

  • Guest
Re: Version 7.00, Release Candidate 1 available
« Reply #24 on: April 18, 2012, 01:48:53 AM »
Now, let's do something useful for a change - like coding...

Hi Pelle... long time no chat.  :D

Yes, I've been working code with ver 7 all day, so it's not just "bitching".... LOL.

Very nice to hear you're still on the project.  And thanks again.

akee

  • Guest
Re: Version 7.00, Release Candidate 1 available
« Reply #25 on: April 19, 2012, 11:22:57 AM »
Thanks Pelle... :)

George99

  • Guest
Re: Version 7.00, Release Candidate 1 available
« Reply #26 on: April 19, 2012, 08:05:48 PM »
Thx Pelle for continuing this very precious tool!  :)

I see no bug-fixing in the changes-page and a quick test shows some old bugs still exist. May we hope for fixing some of these issues in the next candidate?

edit: Oh I didn't see your last post on this page. OK, that sounds very good.
« Last Edit: April 19, 2012, 08:08:12 PM by George99 »

shazam

  • Guest
Re: Version 7.00, Release Candidate 1 available
« Reply #27 on: April 28, 2012, 09:34:21 PM »
This is great news!

I gave up on learning C (teaching myself) but have been wanting to try again

I will download RC2 and check it out  ;D

CommonTater

  • Guest
Re: Version 7.00, Release Candidate 1 available
« Reply #28 on: April 29, 2012, 01:51:14 AM »
I gave up on learning C (teaching myself) but have been wanting to try again

Best bet... get yourself a C programming book.  Start on page 1, read every word, re-read as necessary, type up all the examples, work with the code, change it, break it fix it... then turn to page 2, repeating the same process until you get to the end of the book.  C is not a difficult language to learn so long as you are willing to make a deliberate study of it...

As they say... C is easy... Programming is hard.


shazam

  • Guest
Re: Version 7.00, Release Candidate 1 available
« Reply #29 on: April 29, 2012, 06:43:45 PM »
Thanks for the reply Tater

I have got a book and started on page 1  :D

I downloaded RC2 last night and read and typed in the first chapter examples and exercises

I just need to do as you suggested and rework examples and not move forward in the book untill I feel comfortable with what the current chapter has taught me.


 ;D