Search found 238 matches

by mrjiles
Tue Nov 07, 2017 4:12 am
Forum: Off Topic
Topic: PB code for hire!
Replies: 4
Views: 7420

Re: PB code for hire!

Thanks everyone for your responses and interest. I apologize, but I probably should have provided an update when IdeasVacuum started working on the project. He completed it in record time and it works great. Thanks Chris!
by mrjiles
Sun Oct 29, 2017 4:28 am
Forum: Off Topic
Topic: PB code for hire!
Replies: 4
Views: 7420

PB code for hire!

Hi everyone!

I have been a PB user for years. I am a programming amateur and enjoy tinkering around and making small programs with PB for work use from time to time. I have a small tool that I need but do not have the time to build it. I am looking to pay someone to write the code and get me a ...
by mrjiles
Sat May 28, 2016 7:39 pm
Forum: Coding Questions
Topic: SQLite open shared
Replies: 9
Views: 2551

Re: SQLite open shared

What about Write-Ahead Logging https://www.sqlite.org/wal.html?

Code: Select all

If DatabaseUpdate(DB, "PRAGMA journal_mode=WAL") = 0
    Debug DatabaseError()
  EndIf
This appears to be working as intended, but I haven't tested it yet. Would this create the desired result of concurrent access?
by mrjiles
Sat May 28, 2016 6:55 pm
Forum: Coding Questions
Topic: SQLite open shared
Replies: 9
Views: 2551

Re: SQLite open shared

I am looking into this at the moment as well.

This article states the SQLite can be used for multiple concurrent read connections, but only a single write connection. https://www.sqlite.org/whentouse.html . From using PB, it appears the database is locked, even when only reading from the database ...
by mrjiles
Sat May 28, 2016 5:35 pm
Forum: Coding Questions
Topic: Popupmenu position
Replies: 0
Views: 872

Popupmenu position

I'm trying to position a popupmenu correctly, similar to a dropdown menu where the menu top is bottom aligned to the button. I believe I have it, but the menu appears a little lower than what I normally see. Is this a good way to do this, or is there a better way? Thanks for any input!


OpenWindow ...
by mrjiles
Sat Sep 21, 2013 6:24 pm
Forum: Feature Requests and Wishlists
Topic: Purebasic for Mobile
Replies: 40
Views: 11221

Re: Purebasic for Mobile

I use Purebasic for small tools, etc. for my work. Nothing commercial. Lately I have needed to make an Android app and I just don't have the time to learn a new language or environment.

I think keeping everything native would be a huge amount of work, but maybe creating an intermediate solution ...
by mrjiles
Thu Dec 02, 2010 9:43 pm
Forum: General Discussion
Topic: HTML gurus!
Replies: 17
Views: 3861

Re: HTML gurus!

Wow, old thread but nobody went all in on CSS so here ya go!


<html>

<head>
<style type="text/css">
<!--
#table {display:table; font-family:Verdana; font-size:14px; width:500px; border:solid 1px #000;}
#heading {font-weight:bold; font-size:16px; text-align:center;}
.row {display:table-row ...
by mrjiles
Fri Aug 27, 2010 8:41 pm
Forum: Off Topic
Topic: I need an XP CD..... serial number :)
Replies: 5
Views: 2573

I need an XP CD..... serial number :)

OK, here's the scoop.... I am building a brand new computer and want to install XP Pro on it. XP Pro OEM is still going for a good chunk of change ($100+).... so, I bought Vista Business OEM for $60 to save some cash. Vista Business OEM has downgrade rights to XP Pro.

I installed XP Pro OEM from a ...
by mrjiles
Fri Jul 30, 2010 4:55 pm
Forum: Off Topic
Topic: Help with organizing CAT5 cables to patch panels!
Replies: 9
Views: 2041

Re: Help with organizing CAT5 cables to patch panels!

Thanks blueznl! Slightly better is an understatement!

I too like option #2. This is what I had in mind as well. This also makes future new drops easy to manage.

Thanks for everyone's suggestions!
by mrjiles
Wed Jul 28, 2010 7:27 pm
Forum: Off Topic
Topic: Help with organizing CAT5 cables to patch panels!
Replies: 9
Views: 2041

Re: Help with organizing CAT5 cables to patch panels!

Sorry for the delay....

No, those pictures are of the cables that terminated at the back of the patch panels (wall jacks to patch panels). Those are the cables I can't clean up! The patch cables themselves are fine, those I have hidden in cable managers.

Sorry for any confusion!
by mrjiles
Thu Jul 22, 2010 9:03 pm
Forum: Off Topic
Topic: Help with organizing CAT5 cables to patch panels!
Replies: 9
Views: 2041

Re: Help with organizing CAT5 cables to patch panels!

Thanks Ludo for the suggestions. I've even read about tagging the wall plate with the patch panel & port number (ie first patch panel is A, port 42, so a wall plate would be A42). But this would mean that the ports in the same room would not necessarily be labeled in numerical order... a room with 4 ...
by mrjiles
Thu Jul 22, 2010 2:59 pm
Forum: Off Topic
Topic: Help with organizing CAT5 cables to patch panels!
Replies: 9
Views: 2041

Help with organizing CAT5 cables to patch panels!

I have nobody else to ask, so hopefully someone can give me some help! Cable management has become such a gigantic pain for me!! I always see these pretty pictures of nicely wired patch panels, and it makes me jealous :evil: When I first wired this 2 years ago, I had never done anything this large ...
by mrjiles
Thu Apr 08, 2010 4:36 pm
Forum: Announcement
Topic: ProGUI V1.38 UI Library (Small Bug Fix)
Replies: 1064
Views: 355857

Re: ProGUI V1.12! Professional Graphical User Interface Libr

PrincieD - toolbar problem solved. This is actually funny. Not sure if this is "bug" potential, but sure drove me crazy!!

When I was working your library in, I created basic text toolbar buttons (ToolBarButtonEx) for placeholders. Now I'm adding the icons and am replacing them with ...
by mrjiles
Tue Apr 06, 2010 9:57 pm
Forum: Announcement
Topic: ProGUI V1.38 UI Library (Small Bug Fix)
Replies: 1064
Views: 355857

Re: ProGUI V1.12! Professional Graphical User Interface Libr

Weird stuff, but here's an example. Here's a complete example of mine. Be sure to point it at your own PNG file though.


Image_For_Button.s = "C:\Play.png"


StartProGUI("", 0, 0, 0, 0, 0, 0)

UsePNGImageDecoder()

#Window = 1
#Toolbar = 2
#Button = 3


ButtonImage = LoadImage(#PB_Any, Image_For ...
by mrjiles
Tue Apr 06, 2010 8:29 pm
Forum: Announcement
Topic: ProGUI V1.38 UI Library (Small Bug Fix)
Replies: 1064
Views: 355857

Re: ProGUI V1.12! Professional Graphical User Interface Libr

Ok, I'm having trouble with adding a toolbar icon. Apparently I'm missing something. Here's how I'm attempting it:


Icon_Start = LoadImage(#Icon_Start, "Play.ico")
ToolBarImageButtonEx(#Tbb_Run, "Run", Icon_Start, 0, 0, 0)



This works on a menu though. Also I noticed that if you use #PB_Any ...