376

(13 replies, posted in Feature requests)

why need a "Download config.php", when i upgrade i use the same config.php, when i install new forum i make it 1..5 by my life, it is a dangerous when play with config.php.

377

(13 replies, posted in Feature requests)

i afraid about small bug cause we can download it for any forum.

I do not know, what happend, this a 4thd day my 2 sites,i am register in www.extanthost.com and it is also down, maybe thay make upgrades or somthing else (crashed)
i lost all my emails, BTW i am just waiting big_smile.

i hoped there is another value to make changes in CSS for switch RTL without patching CSS Files
like

margin-left-ltr-source: visual;
or
margin-left-ltr-source: context;

mmmm maybe in the future.

380

(32 replies, posted in General discussion)

16 years old  NO :-o

When i use Firefox extend "Web Developer"

table, div, form, p, h1, h2, h3, h4, pre, blockquote, ul, ol, li, dl, dt, dd    (line 41)
{
    margin-top: 0px;
    margin-right-value: 0px;
    margin-bottom: 0px;
    margin-left-value: 0px;
    margin-left-ltr-source: physical;
    margin-left-rtl-source: physical;
    margin-right-ltr-source: physical;
    margin-right-rtl-source: physical;
    padding-top: 0px;
    padding-right-value: 0px;
    padding-bottom: 0px;
    padding-left-value: 0px;
    padding-left-ltr-source: physical;
    padding-left-rtl-source: physical;
    padding-right-ltr-source: physical;
    padding-right-rtl-source: physical;
    font-size: 1em;
}

what "margin-left-ltr-source: physical;" mean and what another values of physical ...
i try search in google but nothing found

Related RightToLeft CSS forum

382

(4 replies, posted in General discussion)

This kind of games need a partners, and more time to be more fun big_smile

383

(4 replies, posted in General discussion)

My people will hate me if there is bad in this game but, any way i will translate it

Warrior Knights -> Warrior Soldiers
?????? ?????????

Warrior Knights -> Warrior Chivalry
??????? ?????????

Warrior Lords -> Warrior Emirs
????? ?????
Lords translated as Emirs

Warrior Emirs of Iraq
????? ??? ??????

384

(6 replies, posted in PunBB 1.2 discussion)

you can use links in Announcement

385

(6 replies, posted in Programming)

reinstall IE in custom instalation and add your languages
or enable "install on demands" in internet options in advanced.

386

(11 replies, posted in General discussion)

Stargate
Shaolin soccer / Siu lam juk kau
The Thing
Gattaca

The Mask big_smile

387

(1 replies, posted in PunBB 1.2 troubleshooting)

open 
  "viewtopic.php"
find
  // Retrieve the posts (and their respective poster)
$result = $db->query('SELECT u.email, u.title, u.url, u.location, 


add
   u.realname,

to become
  // Retrieve the posts (and their respective poster)
 $result = $db->query('SELECT u.email, u.title, u.url, u.location, u.realname,

find 
// get_title() requires that an element 'username' be present in the array

add before

   $user_realname = $cur_post['realname'];
    if ($user_realname!='')
    {
                if ($pun_config['o_censoring'] == '1')
                    $user_realname = censor_words($user_realname);

                $info .= "<br>".$user_realname;
    }

388

(14 replies, posted in General discussion)

there is a old topic for new members
http://punbb.org/forums/viewtopic.php?id=3127

389

(6 replies, posted in Programming)

i am sorry for lating, my computer have down (problems)  last days,
i think
- You need find a "Client game" Window Handle (HWND)
   FindWindow('', 'TBoT199 - RichyT');     FindWindow(classnamewindow, caption)
you can use
C:\Program Files\Microsoft Visual Studio\Common\Tools\SPYXX.EXE
to find classname of window istead caption

- Get image captured from it

procedure CaptureWindow;
var
  Hwnd:THandle;
  DC:THandle;
  R:TRect;
  Bitmap:TBitmap;
begin
  //Hwnd:=GetDesktopWindow;// desktop
  //Hwnd:=GetForegroundWindow; //by class using Spyxx.exe e.g. capturing task bar
  Hwnd:=FindWindow('Shell_TrayWnd', ''); //by class using Spyxx.exe e.g. capturing task bar
  DC:=GetDC(Hwnd);
  if DC<>0 then
  begin
    Bitmap := TBitmap.Create;
    GetClientRect(Hwnd, R);
    Bitmap.Width := R.Right-R.Left;
    Bitmap.Height := R.Bottom - R.Top;
    bitblt(Bitmap.Canvas.Handle,0,0, Bitmap.Width, Bitmap.Height, DC ,0,0, srcCopy);
    //do somthing with image in Bitmap like
    //Image1.Picture.Bitmap := Bitmap; assiging to image     or save to file
    Bitmap.SaveToFile('c:\1.bmp');
    Bitmap.Free;
  end;
end;

- anlyase the word images
sad i dont
- put a result word in a textbox or edit in the client game
your Client game writen in java so try to get handle of the edit by SpyXX first if it work we can use
sendmessage(hwnd_of_edit, WM_SETTEXT, 0, Longint(AText));
or
SetWindowText(hwnd_of_edit, AText);

390

(5 replies, posted in PunBB 1.2 troubleshooting)

Indonesia, is "Selamat" mean "Welcome"?

391

(14 replies, posted in General discussion)

but this game in "Relax" section, n'est pas?

392

(14 replies, posted in General discussion)

i finish "Revrese" with my left hand big_smile

393

(0 replies, posted in Programming)

http://www.fmod.org/

394

(14 replies, posted in General discussion)

Oops, i must add
Some one will hate me.

I am there  http://www.atcybertopia.com for downloads a free games specially old classic games (old memories).

and i am here to make friends.

395

(14 replies, posted in General discussion)

Some one will like it
http://www.atcybertopia.com/news/news.p … ews_id=197

Ok, that because i make many mistakes when i am writing online, i counted it on my self, and post a request big_smile.

397

(9 replies, posted in General discussion)

Ok Fareed, but my wife will kill me if she know i am publish our family photos big_smile

http://dirkey.com/zaher/images/lina-1.jpg
http://dirkey.com/zaher/images/lina-2.jpg
http://dirkey.com/zaher/images/lina-3.jpg
http://dirkey.com/zaher/images/me-aya-1.jpg

398

(6 replies, posted in Programming)

Oh, i deemed you have the answer, BTW why you need a HWND inside delphi you play with objects not windows, give me more descriptions.

is you drag objects inside your program ?

i switched to FF 99% now big_smile

- I a have many pages in a topic
- i read a first page
- i am stupid (a some stupid) and post and answer in "Quick post" Bottom of this page
- i recognize that there is a another page and not need to post that answer
- i delete my post

my ask to make a "Quick Post" showed in the last page only.