The panel code is long, which part should i post? And the frame that uses it is:
local dte = vgui.Create("DTextEntry", THECUSTOMFRAME)
dte:SetSize(250,20)
dte:SetPos(135,365)
SetSize doesn't exist for DTextEntry I would advise you to look at the wiki if you have any derma problems.
http://maurits.tv/data/garrysmod/wik...tle=DTextEntry
You would use:
local dte = vgui.Create("DTextEntry", THECUSTOMFRAME)
dte:SetPos(135,365)
dte:SetWide(220)
dte:SetTall(20)
For future reference TextEntry uses SetSize.