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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Sjobba

  1. Sjobba

    menus, jus like in C++Builder IDE

    I have the solution to your problem, good eh ?<br>Do this:<br><br>1. Drop a ControlBar onto your form. (Additional tab), set align to top and autosize to true, for this ControlBar<br><br>2. Drop a ToolBar onto this ControlBar<br><br>3. Set ShowCaptions to true for this ToolBar<br><br>4. Set...
  2. Sjobba

    Getting string/info from a file?

    This piece of code is a bit simpler than the exampleabove. But then it's not too sophisticated either :)<br>assuming you have a Button a Edit box and a Memo1 on a form<br>paste this code to test it, The file contains some rows<br>as in your example above, like this:<br><br>@Input1=&quot;Get from...
  3. Sjobba

    Properties not usable in ActiveX control

    I have made a simple button control that I converted to ActiveX using the wizard in bcb4. When I use this control in an HTML page i cannot set the properties with the PARAM tag ! Does anyone have a solution to this, or any hint at all ?<br><br>/Sjöbba <p>Anders Sjöberg<br><a...
  4. Sjobba

    Can not set a cookie !

    This problem is so strange I have to examine my head.<br> <br> This function sets the cookie !<br> <br> function SetCookie(sName, sValue)<br> {<br> var expires = new Date(3E13);<br> alert(); //completely empty alert box !<br> document.cookie = sName + &quot;=&quot; + escape(sValue)+&quot...
  5. Sjobba

    Converting entire folders of image files from .tif to PDF

    1: Make an action:<br> go to the action tab<br> make a new one<br> name it :)<br> record while you save an image as PDF<br> stop recording.<br> 2: Run a batch<br> in files menu.<br> click batch<br> chose to run your new action<br> <br> Hope it helped<br> <br> /Sjobba<br> <p>Anders...
  6. Sjobba

    Recorder in C++Builder is great

    1: Press Ctrl+Shift+R to start recording keystrokes<br> 2: Press it again to stop<br> 3: Press Ctrl+Shift+P to play the recording<br> <br> This is a great help if you have huge lists of varables you want to make into properties. Use your imagination. I discovered this feature some weeks ago and...
  7. Sjobba

    Stand-a-lone Program

    To get rid of the dll's needed do the following:<br> In Project/Options/Linker uncheck the "Use dynamic RTL" checkbox, In Project/Options/Linker uncheck the "Build with runtime packages" option.<br> Rebuild the project.<br> This results in one single exe file, nice huh !<br> <br> /Sjobba

Part and Inventory Search

Back
Top