Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Grief-Code

Pages: [1]
1
Offtopic / Re: Truly epic :D
« on: July 28, 2014, 16:23 »
Nop , aint happening for me

My bad:
Code: [Select]
[img width=356 height=200]http://i.imgur.com/yjNc280.jpg[/img]

All the syntax is sometimes confusing  ::)

2
Offtopic / Re: Truly epic :D
« on: July 28, 2014, 16:20 »
*without dots
Code: [Select]
[img width={800} height={450}]http://i.imgur.com/yjNc280.jpg[/img]

3
Offtopic / Re: Truly epic :D
« on: July 28, 2014, 16:19 »
As said, for me its fine.

however you can set a fixed value:
Code: [Select]
[img width={800} height={450} ...]http://i.imgur.com/yjNc280.jpg[/img]

Thats bbcode ftw !

4
Offtopic / Re: Truly epic :D
« on: July 28, 2014, 16:14 »
You can't fix it, for me as example its fine.

It's probably his desktop resolution, it's a way to low.
The way to fix it would be to scale signatures by browser %, but this can be only done by 'hacking' the forum.

Regards,
G-C


5
Programming / Re: Need help visual basic 6.0
« on: July 28, 2014, 11:08 »
Small fix:

Code: [Select]
/* small trick to round always up */
foo = round( foo, (bar+0.5));

/* same goes to always round down */
foo = round( foo, (bar-0.5));

Regards,
G-C

6
Programming / Re: Need help visual basic 6.0
« on: July 28, 2014, 09:35 »
However, this link was the first hit when searching for visual+basic+6+round
As you can see, you can round a number now simple on 2 decimal numbers by using
Code: [Select]
/* foo = number to round, bar = decimal numbers */
foo = round( foo, bar);

Advanced:
Code: [Select]
/* small trick to round always up */
foo = round( foo, (bar+1));

/* same goes to always round down */
foo = round( foo, (bar-1));

Regards,
G-C

Ps: Wtf, why I can't edit my own post and this approval sucks.
If you fear spamming on the forum, you can simply go with an anti-spam-bot, for smf there a lot out on the web. I'm not a human.

Pages: [1]