Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Andrzejek on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: MrPtt
  • Order by date
  1. MrPtt

    Writing a .NET app for the BROWSER of the Palm OS

    Hi You could use the Palm SDK to develop your application. (I think it's free, but not Ms .NET) Some URL's: http://www.tldp.org/REF/palmdevqs/ http://www.tldp.org/REF/palmdevqs/palmdevqs.pdf You can also read that thread: http://mail.gnome.org/archives/gnome-pilot-list/1999-July/msg00001.html...
  2. MrPtt

    error 1069 / log on as a service / on start win2000 service

    Hi "Local Policies" on a Win2k Server are the last policies that the system applies. If you have any more restrictive on "Server policies" or in "{I don't remember name}" [ponder] it will be apllied instead of "Local Policy" Also, watch if the directive is applied Good luck!
  3. MrPtt

    Complete string is not displaying in combo Box

    Hi Another option is use a label as a ToolTip. Every time you move betwin values, load the label and show the complete string. Format the label as a ToolTip, and hide/show it when needed. Rudimentary, but I think it'll work, isn't it? What do you think?
  4. MrPtt

    Backup Linux

    Hi If you want backup your Linux system, from a Win system... I think you should use Samba, so your Win machine will see your Linux and could backup data. What do you think? ;-)
  5. MrPtt

    Newbie Quesion on RPMs

    Hi What do you need?: 1.- Rebuild the rpm (utility?) 2.- Rebuild the code for your NIC, that comes in the rpm. If second, open the rpm with sources, and build drivers for your NIC Good luck! ;-)
  6. MrPtt

    locking down nodes on a treeview

    Hi Try this: Private Sub TreeView_BeforeLabelEdit(Cancel As Integer) Cancel = True End Sub
  7. MrPtt

    How do I load a dll in Visual Basic

    Hi You should have registered all .dll's you need: x1.dll (used by Vb) and x2.dll (used by x1.dll) Register x2.dll: "regsvr32 x2.dll" Good luck! ;-)
  8. MrPtt

    Excel object not created when running as a different user

    Hi If it's an ActiveX, you could configure DCOM and make it run with your user. (You say it works fine so) What do you think? Good luck! ;-)
  9. MrPtt

    Complete string is not displaying in combo Box

    Hi You can use the ToolTipText property of the Combo Box. I.e: Change the value of the property on the Cbo_Click event to the correct one, every time user selects one entry. Good Luck! ;-)
  10. MrPtt

    Text Parser

    Hi all I'm seraching for code that makes anything like this: Use a RichTextBox to mark grammar in text. I.e. detect parenthesis, and put in red all them that are not closed. Algorithm it's quite easy, the problem is the constant access to the control to see what's writing the user, and colour...
  11. MrPtt

    How to format Lines of text..

    Hi it could be like: v_Words = split(s_UnformattedText," ") For i=0 to ubound(v_Words) if i_WordsInLine = C_WORDS4Line then s_Line = s_Line & v_Words(i) & vbcrlf s_FormattedText = s_FormattedText & s_Line s_Line = "" i_WordsInLine = 0 else s_Line =...
  12. MrPtt

    Visual Basic reinstall problem

    Hi >I have tried deleting the ocx's [...] Before deleting it, you must unregister to avoid problems: regsvr32 /u xxx.ocx[dll] If you deleted before making that, you only can find problems. Don't touch the registry directly. There is a Ms application, called "Ms RegClean" that...
  13. MrPtt

    crystal reports svpack2 + terminal services

    Hi, First, you should see if you can run the application locally in the terminal server, and print. Use a user that you use to connect remotelly. So: 1- Problems with user rights?. 2- Problems with Crystal dll's in installation? Also: Are you using any Application Server like Citrix...
  14. MrPtt

    Spurious decimals

    Hi Try: s_Numbers = Split(text1.text, ".") s_Integer = s_Numbers(0) s_Decimal = "0." & s_Numbers(1) Good luck! ;-)
  15. MrPtt

    Download File using HTTP

    Hi to make a HTTP petition you can do that: Use a Inet control, from the "Ms Internet Transfer Control 6.0 (SP4)" and configure it: With Cnx_HTTP .Protocol = icHTTP .AccessType = icUseDefault .URL = s_URL_to_File End With Cnx_HTTP.Execute ...
  16. MrPtt

    diskless linux firewall

    Ya can try this also: * http://www.ipcop.org/ Has: Linux 2.4 kernel and iptables, Web interface, multilanguage... Good luck! ;-)
  17. MrPtt

    about installing linux redhat9 question thanks

    Perhaps a Hw incompatibility? Search in the hcl your HW: * http://hardware.redhat.com/hcl/ Good luck! ;-)
  18. MrPtt

    How do i enable TFTP?

    TFTP: Trivial FTP It doesn't use user authentication, and other things... Usually it's used to make remote boots, in diskless PCs. To download the file that boots the machine. Or to restore PCs from fresh image disks (automatic installations) I think you know well the use of the usual FTP...
  19. MrPtt

    RIS without PXE

    Hi neutec You can go there for information: * http://support.microsoft.com/default.aspx?scid=kb;en-us;259670&Product=win2000 * http://www.microsoft.com/technet/treeview/default.asp?url=/technet/prodtechnol/winxppro/reskit/prbc_cai_facb.asp *...
  20. MrPtt

    RIS without PXE

    Hi Go here: http://www.rom-o-matic.com/5.2.0/. Get your NICs disk boot image, and enjoy. Make me know if you have any question. See you!

Part and Inventory Search

Back
Top