前往Shuct.Net首页

Shudepb PB反编译专家长时间以来,为业内同类软件事实上的唯一选择.细节,彰显专业.态度,决定品质.

关于PowerBuilder的搜索

Displaced Guy &#187; PowerBuilder, .NET, Adsense &#38; Blogging for Cash Search PowerBuilder 15 &#8211; PowerBuilder User Conference 2014 in Charlotte NC Tweet PowerBuilder 15 a genuine SAP product until at least 2022 SAP is committed to releasing PowerBuilder 15 and has started an internal beta program and is moving PowerBuilder 12.5 and PowerBuilder 15 to the SAP downloads area. This information comes from PowerBuilder expert Bruce Armstrong via several blog posts?on the PowerBuilder Developer Center. &hellip; View full post PowerBuilder Converting ANSI and Unicode Strings Converting PowerBuilder Strings from ANSI to Unicode due to special characters being converted incorrectly such as the dash when converted to unicode is an invalid character. View full post SAP PowerBuilder 15 in 2014 Tweet Happy New Year PowerBuilder! Who would have guessed that we&#8217;d be celebrating news of PowerBuilder 15 Beta Program in 2014? That is a rhetorical question for sure as I don&#8217;t think there were many of us that expected it to happen. I personally thought that PowerBuilder 15 was going to be canned, and that &hellip; View full post PowerBuilder 15 Beta &#8211; SAP Supported Until 2022 Tweet SAP Announces PowerBuilder 15 Beta? Michael REH &#8211; SAP Executive Vice President and Head of SAP/BIT, the division in charge of PowerBuilder within SAP &#8211; announced the availability of PB 15 Beta! Official press release can be found here. ?SAP made an additional statement implying that they are looking to engage with developers better &hellip; View full post Converting Date to and from UTC in PowerBuilder.NET &#038; .NET Framework Tweet Converting from UTC to Local & Local to UTC using .NET Framework Converting dates?from or to UTC in the .NET Framework is pretty simple as the DateTime class has many built in features including many conversion related functions. Example .NET Framework Date Conversion Code ( UTC / Local ) The .NET code &hellip; View full post PowerBuilder 15 &#8211; PowerBuilder User Conference 2014 in Charlotte NCPowerBuilder Converting ANSI and Unicode StringsSAP PowerBuilder 15 in 2014PowerBuilder 15 Beta &#8211; SAP Supported Until 2022Converting Date to and from UTC in PowerBuilder.NET &#038; .NET Framework Recent Posts PowerBuilder 15 &#8211; PowerBuilder User Conference 2014 in Charlotte NC PowerBuilder Converting ANSI and Unicode Strings SAP PowerBuilder 15 in 2014 PowerBuilder 15 Beta &#8211; SAP Supported Until 2022 Converting Date to and from UTC in PowerBuilder.NET &#038; .NET Framework Hot &#8211; Adsense Hot &#8211; Development Top Rated Subscription to DisplacedGuy.ComGet my MOST VALUABLE secrets about making money online and become part of a small network of successful and well connected PB developers! . I will never share your email address -- promise. Jan 20 PowerBuilder 15 &#8211; PowerBuilder User Conference 2014 in Charlotte NC Categories: Development, Microsoft .NET Framework, PB 12.5 Classic, PB.NET, PowerBuilder, PowerBuilder 15, PowerBuilder Conversions, PowerBuilder Tips or Tricks by DisplacedGuy Tweet PowerBuilder 15 a genuine SAP product until at least 2022 PowerBuilder 15 Beta SAP is committed to releasing PowerBuilder 15 and has started an internal beta program and is moving PowerBuilder 12.5 and PowerBuilder 15 to the SAP downloads area. This information comes from PowerBuilder expert Bruce Armstrong via several blog posts?on the PowerBuilder Developer Center. The fact that PowerBuilder 15 and PowerBuilder 12.5 is beginning to show up on SAP downloads area is proof that SAP is serious about making PowerBuilder an SAP product which typically means at least 8 years of support. Assuming PowerBuilder 15 is launched in 2014, the product would be supported by SAP&#8217;s outstanding customer service and quality commitment until the year 2022. I believe this commitment will put a lot of IT Managers at ease due to the significant number of legacy PB systems in use today. PowerBuilder User Conference &#8211; March 5, 6 & 7th Mark your calendar because the PowerBuilder User Conference 2014 is now open.?The North Carolina PowerBuilder User Group and Appeon Corporation are proud to present the Charlotte PowerBuilder Conference (CPBC) to be held at the Center City Campus of the University of North Carolina at Charlotte?at Charlotte on March 5,6,7 2014. Registration for this three day event is $350. However, if you register before February 4 you can receive a $100 discount (that’s more that 25% off)! REGISTER HERE! The event is sponsored by? This post has no tag Leave comment Jan 06 PowerBuilder Converting ANSI and Unicode Strings Categories: Development, PB 12.5 Classic, PB.NET, PowerBuilder, PowerBuilder 15, PowerBuilder Tips or Tricks, Redesign or Migrate, Reference by DisplacedGuy Tweet Why PowerBuilder Changed To Unicode in PowerBuilder 10 Sybase PowerBuilder 10 supports a comprehensive set of features for working with Unicode and building?multi-language, internationalized applications. The multi-language features are implemented at a?fundamental level; the PowerBuilder environment itself is now converted to support Unicode. The?Unicode-enabled underlying system drives Unicode-enabled PowerBuilder applications that are capable of?reading files and databases containing multi-language content and presenting this content to end users in a?culturally appropriate rendering of their language. Here is the full scoop on PowerBuilder and Unicode from Sybase.com. Converting from Unicode to ANSII or vice-versa PowerBuilder 10 uses Unicode (UTF-16 little endian) internally. PowerBuilder is written in C++ and all internal string manipulation is Unicode compliant as of PowerBuilder 10. PowerBuilder versions 7, 8, and 9 used double-byte character sets (DBCS); and PowerBuilder versions 6 and earlier used ASCII. This internal upgrade to Unicode means all PowerBuilder 10 applications are also fully capable of supporting Unicode and therefore multiple languages. PowerBuilder 10 has added PowerScript functions to process Unicode and ANSI/DBCS characters and the sources for the characters, such as Unicode and ANSI/DBCS databases and files. Convert data to ANSI C# Blob lbl_data lbl_data = Blob("PowerBuilder is cool!", EncodingANSI!) ls_data = String(lbl_data, EncodingANSI!) 1234 Blob lbl_data lbl_data = Blob("PowerBuilder is cool!", EncodingANSI!)ls_data = String(lbl_data, EncodingANSI!) Convert data read via file to ANSI C# Blob lbl_data lbl_data = Blob("PowerBuilder is cool!", EncodingANSI!) ls_data = String(lbl_data, EncodingANSI!) 123456 Blob lbl_data lbl_data = Blob("PowerBuilder is cool!", EncodingANSI!)ls_data = String(lbl_data, EncodingANSI!) Blob Type – Blob is a binary data type. A Blob can store binary data, ANSI characters,?or Unicode characters. The String() and Blob() functions support the conversions between the types. The functionality?contained in the String() and Blob() functions obviate the need for the older functions FromANSI() and?ToANSI(), FromUnicode(), and ToUnicode(). These functions are still supported in PowerBuilder?10, but deprecated; users are encouraged to migrate to the String() and Blob() functions. The String() and Blob() functions require an encoding parameter. The encoding parameter is one?of the following: EncodingANSI! Encoding UTF8! EncodingUTF16LE! – UTF-16 Little Endian encoding (PowerBuilder 10 default) EncodingUTF16BE! – UTF-16 Big Endian encoding To convert a Blob to a String use: String ( blob, {Encoding} ) For example: String str str = String(Blb) // Absence of encoding parameter defaults to UTF16LE or String str str = String(Blb, EncodingUTF8!) // Use UTF8 encoding To convert a String to a Blob use: Blob ( string, {Encoding} ) For example: Blob Blb Blb = Blob(&#8220;Some Text&#8221;) // Absence of encoding parameter defaults to UTF16LE or Blob Blb Blb = Blob(&#8220;Some Text&#8221;, EncodingUTF8!) // Use UTF8 encoding File Functions in PowerBuilder supporting the encoding argument li_FileNum = FileOpen(&#8220;EmployeeU.txt&#8221;, TextMode!, Read!,?EncodingUTF16LE!) This post has no tag 1 comment Jan 01 SAP PowerBuilder 15 in 2014 Categories: .NET Framework 4, Development, Microsoft .NET Framework, PB 12.5 Classic, PB.NET, PowerBuilder, PowerBuilder 15 by DisplacedGuy Tweet Happy New Year PowerBuilder! Who would have guessed that we&#8217;d be celebrating news of PowerBuilder 15 Beta Program in 2014? That is a rhetorical question for sure as I don&#8217;t think there were many of us that expected it to happen. I personally thought that PowerBuilder 15 was going to be canned, and that the next SAP official news would be the silver stake in PowerBuilders&#8217; heart. I was dead wrong, and I&#8217;d like to think that the petition started by Bruce Armstrong (the PowerBuilder evangelist hero and savior) influenced management at SAP. If you visit the petition, you&#8217;ll see: VICTORY &#8211; SAP scheduled announcement about PowerBuilder 15 There were 2,154 signatures as of the time of this writing. The goal was initially set much lower and was increased at least three times due to higher than expected turnout. The official announcement for the PowerBuilder 15 beta program came at a press release at the SAP Tech Ed in Bangalore 2013. Bruce appears to have started a different PowerBuilder 15 petition on change.org which also garnered several hundred signatures. SAP made an official announcement, that PowerBuilder 15 will be released and that a closed beta program has been started. SAP also committed to supporting the PB 15 release for 8 years which is standard for SAP official software (yes PowerBuilder is SAP standard software). The PowerBuilder FaceBook page is still having PowerBuilder 12.5 as the profile picture hopefully we&#8217;ll see the new one soon. This post has no tag Leave comment Dec 25 PowerBuilder 15 Beta &#8211; SAP Supported Until 2022 Categories: Development, Microsoft .NET Framework, PB 12.5 Classic, PowerBuilder, PowerBuilder 15 by DisplacedGuy Tweet SAP Announces PowerBuilder 15 Beta? Michael REH &#8211; SAP Executive Vice President and Head of SAP/BIT, the division in charge of PowerBuilder within SAP &#8211; announced the availability of PB 15 Beta! Official press release can be found here. ?SAP made an additional statement implying that they are looking to engage with developers better in the future (thank goodness). ?“We are very excited getting these very important announcements out to the developer community to underline SAP&#8217;s commitment to expand our developer engagement and outreach across our technology platforms”. A new closed beta version of PowerBuilder 15 has been released by SAP. You can sign up for the beta program for PowerBuilder 15 here.?The only negative of the beta is that is is a closed meaning only customers of SAP having an &#8220;S&#8221;-ID can use the beta program. SAP is working on a solution to get us long-time PB developers into the system so that we can be part of the program without needing to buy SAP support. PowerBuilder 15 is now Official SAP Tool &#8211; Support Until 2022 SAP had made PowerBuilder 15 an official SAP product and it is listed in the SAP product catalog. This commitment means that we can count on SAP quality, security and a minimum of 8 years support for each product starting with PowerBuilder 15 in 2014. Is it possible that the petition started by Bruce Armstrong influenced SAP? I&#8217;d like to believe that it did make a difference I am encouraged by what I&#8217;ve heard come from SAP and I take back anything negative I said while impatiently waiting for PB15. Highlights of SAP PowerBuilder 15 Beta The biggest change coming with PB 15 is moving from .NET 4.0 to .NET 4.5, and support for Windows 8. There will be new databases and possibly OS&#8217;s supported. This info was taken mostly from Bruce Armstrongs&#8217; blogs. Windows 8 32 and 64 bit support OData,?SQL Server 2012, Oracle 12 .Net 4.5 Dockable Windows In the future SAP is looking at Hana XSE support for PowerScript, and better integration between PB and SAP Hana. Notable About PowerBuilder 15 & Beyond SAP may be looking at going with one IDE (the classic) which makes sense to me, supporting two IDE&#8217;s seems like overkill, why change something that works, a nice clean-up is in order but the classic IDE works. SAP is looking to support JavaScript in IDE Support Contracts & Closed Beta &#8211; SAP is working to get people S-user accounts so they can access the beta without going through the S-user creation process. Stay tuned for more info&#8230; This post has no tag 1 comment Dec 20 Converting Date to and from UTC in PowerBuilder.NET &#038; .NET Framework Categories: .NET Framework 4, Development, Microsoft .NET Framework, PB 12.5 Classic, PB.NET, PowerBuilder, PowerBuilder 15, PowerBuilder Conversions, PowerBuilder Tips or Tricks, Silverlight 4 by DisplacedGuy Tweet Converting from UTC to Local & Local to UTC using .NET Framework Converting dates?from or to UTC in the .NET Framework is pretty simple as the DateTime class has many built in features including many conversion related functions. Notice When you parse a string into a date you will need to be careful in knowing what time zone the date and time string is from but assuming you know what date time you are working with you simply use the SpecifyKind?method of the DateTime class. Example .NET Framework Date Conversion Code ( UTC / Local ) The .NET code for performing the UTC to local and back conversion is listed below. C# <span style="color: #339966;">// Get date for current moment adjusted for local time zone.</span> DateTime utcNow = DateTime.UtcNow; DateTime localNow = DateTime.Now; <span style="color: #339966;">// convert the UTC date to Local</span> newDate = DateTime.SpecifyKind( utcNow, DateTimeKind.Local ); <span style="color: #339966;">// convert the Local time to UTC</span> newDate = DateTime.SpecifyKind( localNow, DateTimeKind.Utc ); 12345678 <span style="color: #339966;">// Get date for current moment adjusted for local time zone.</span>DateTime utcNow = DateTime.UtcNow;DateTime localNow = DateTime.Now; <span style="color: #339966;">// convert the UTC date to Local</span>newDate = DateTime.SpecifyKind( utcNow, DateTimeKind.Local );<span style="color: #339966;">// convert the Local time to UTC</span>newDate = DateTime.SpecifyKind( localNow, DateTimeKind.Utc ); This post has no tag 2 comments Dec 20 Adsense High RPM Equates to High Income Producing Potential Categories: Adsense, Adsense Actuals, Blogging for Cash, Internet Marketing, Making Money, MMO, Most Popular, Top 10 All Time by DisplacedGuy Tweet High AdSense RPM sites equate to higher income producing potential It is no secret that AdSense RPM is my favorite AdSense statistic other than &#8220;Income&#8221;. ?Generally speaking, the Adsense Actuals RPM higher the RPM the more money making potential a web page has. We want to make money as fast as possible while minimizing expenses as much as possible. Making money with AdSense is pretty fun, isn&#8217;t it? RPM is my?gold standard in estimating a specific web site&#8217;s ability to generate the most income per page viewed. RPM is?also known as &#8220;revenue per mile&#8221; or revenue per 1,000 pages. Maximize AdSense profit margin We want to maximize our profit margin. If we have a site with an RPM of $10.00 than we are making exactly one penny per page viewed. One thousand pages divided by ten dollars is one cent. Minimize hosting costs associated with serving pages We need to minimize costs incurred in creating content, hosting content and other business related costs. The concept is simple except that our content creation cost is a one-time expense. So won&#8217;t it be nice to get paid for your content over, and over, and over again? The example given above is an average across sites. So the data is anonymous. This prevents me from violating the AdSense terms of service.?Wouldn&#8217;t it be terrible if your account was suspended once you were pulling in some serious cash? I admit to accidentally violating the TOS in my first years blogging for cash. Google either turned a blind eye, didn&#8217;t see it, or didn&#8217;t care because my earnings were literally pennies. Use RPM only if it is stable from day-to-day If you have good traffic than your RPM will be stable, the law of large numbers helps to stabilize the number. Sporadic page views will cause RPM to jump all over the place making it less reliable. If your RPM is doubling one day and then dropping to zero the next day then you may not want to invest heavily based on RPM until it stabilizes. Using RPM is no guarantee for huge profits, but if you can get more traffic to a high RPM site or page then you will make the MOST money per visitor. Improve content quality to squeeze every last drop of RPM possible If you strive for highest RPM, you will probably be improving just about every other AdSense statistic. RPM is made up of many statistics, including cost per click (CPC), impressions and click through rate (CTR). There are many quality statistics that are a factor in creating higher RPM pages. You can read about the AdSense quality statistics in some of my earlier articles. If you need help building traffic to your web site you should see Add 1,000 Backlinks in A Day. So remember that the highest RPM site is your website with the?highest potential for producing easy revenue. Classifying sites into quality bands using your RPM If you have a website where the RPM runs higher than ten dollars on a consistent basis than you have got yourself a REALLY good site to make money with. There are other factors to be considered such as potential traffic and competition but if your RPM is that high you have broken into the ranks of successful AdSense entrepreneurs. Other ideas&#8230; You could experiment with content and/or advertisement placement in an effort to increase click through rates (CTR), cost per click (CPC) and traffic volume. The combination of high CTR and CPC will automatically cause RPM to increase as it is a product of all three. Remember when AdSense was new and it seemed overwhelming? Increase traffic &#8211; the AdSense RPM multiplier Generally speaking if you add traffic to high RPM sites you will increase revenue faster than adding traffic to low RPM sites. ?If you average fifty cents a click (CPC) and your site has 5,000 page views which landed 5 clicks your click through rate is one click for every 1,000 pages or .1 %, very dismal. Computing RPM is simple in this example, you are making 50 cents for every 1,000 page views (RPM) because remember mile is analogous to one thousand page views. I&#8217;m not sure the history on why &#8216;Revenue per Mile&#8221; is used to mean revenue per thousand pages but the airlines typically measure success in RPM and cost per mile. Adsense Actuals for a few sample websites I haven&#8217;t posted an Adsense Actual posting in a while. ?I&#8217;m sorry about that I must have too many things going on and just didn&#8217;t get it done. At minimum I&#8217;m gong to post the chart &#8220;from the beginning&#8221; until now. ?It shows how slow money making has gone for me, yet one can be thankful that it has done as much as it did. I am happy with any growth as long as it is consistent growth. Note that the Page RPM has gone up consistently over the last few years to around $5 or $6 consistently across all sites being monitored. The reason Page RPM shown below is only $3.76 is the average from the beginning of time until now. Fake clicks on new accounts Page RPM can sometimes be elevated during the first year of a site as friends, curious people, and nosy neighbors take interest in what you are working on you tend to pick up sympathy clicks, thankfully not enough to warrant Google blocking my account. Getting false clicks is the wrong way to go about business. It will burn you in the long-run so do everything possible to prevent it.?I have a suspicion that Google expects a certain level of false clicks at first, they are a cost of doing this kind of business. Remember that the advertiser is your customer too. You want your advertiser to get the maximum benefit from their advertising dollars. Advertisers can choose to place ads on your site if they have good sales results from ad-clicks. Treat your customer like you would a customer of any other business. That is common sense though right? Sample Report &#8211; This report has a longer time-frame and skews the RPM lower because my RPM in the beginning was very low. This same report run for the last three months has an average RPM of almost double the $3.76 below. Setting goals I&#8217;ve found certain types of sites that work and am working on creating more of them. I am still playing the numbers game, the first goal was 1 cent a day, my second goal was ten cents a day consistently, my third goal was a dollar a day consistently, now my next goal is ten dollars a day, and then one hundred, and one thousand so I figure I&#8217;ve got at least another three to four years left. ?Will I stop at $1,000 a day? Probably not if I know myself but I would work at diversification, in fact I should be thinking of it now. Ideally I&#8217;d like to have something to hand down to my family, something with residual income generating ability. Reflecting on past performance I can say without a doubt in my mind that my biggest mistake was that I am not taking enough time to create quality content. Final thoughts I will say that creating content is the single most difficult part of making money online. If you put a half-effort into your content you will get half the visitors I can look at every article I&#8217;ve written and most of the ones in the top ten for traffic are content that I spent at least a full day creating. If you want to spin some easy fluff content you can&#8217;t expect much, if you work hard you are usually rewarded and I guess that is a good note to end on. Revenue Per Mile (RPM) as taken from Google AdSense Help: Revenue per thousand impressions (RPM) Revenue per 1000 impressions (RPM) represents the estimated earnings you&#8217;d accrue for every 1000 impressions you receive. RPM doesn&#8217;t represent how much you have actually earned; rather, it&#8217;s calculated by dividing your estimated earnings by the number of page views, impressions, or queries you received, then multiplying by 1000. Formula: RPM = (Estimated earnings / Number of page views) * 1000 For example: If you earned an estimated $0.15 from 25 page views, then your page RPM would equal ($0.15 / 25) * 1000, or $6.00. If you earned an estimated $180 from 45,000 ad impressions, your ad RPM would equal ($180 / 45,000) * 1000, or $4.00. RPM is a commonly used number in advertising programs, and you may find it helpful for comparing revenue across different channels. This post has no tag Leave comment Older posts &laquo; Register | Login PowerBuilder 12.5 Training Over 100 PowerBuilder Training Videos, Tutorials, Guides, Sample Apps & Articles for PowerBuilder 12.5 X-REF.US Project X-REF.US Help launch a coding cross reference site. Need partners, no time. PB Contract Rate Surveys for 2013 Categories.NET Framework 4 Adsense Adsense Actuals Adwords Affiliate Programs Analytics Blogging for Cash Development Featured Internet Marketing Java Jobs Make Money Online Series Making Money Microsoft .NET Framework Microsoft SQL Server 2008 MMO MVC Part II - This Site Stats Part III - Stats PB.NET PB 12.5 Classic PB to Java PowerBuilder PowerBuilder 15 PowerBuilder Conversions PowerBuilder Tips or Tricks Promote Website Recent News Redesign or Migrate Reference SaaS Silverlight 4 Top 10 All Time Top Ten Last 6mo Training Visual Studio 2010 Visual Studio 2012 Visual Studio Development WaveMaker WCF RIA Services Website Development Windows 7 WordPress XAML Loading tweets... Follow @DisplacedGuy Adsense Bootcamp See the actual Adsense reports for yourself! Learn to blog for cash. Blogroll SAP PowerBuilder Silverlight Development Subotex.Com Suboxone Withdrawal and Tapering The Keen View Blog Meta Register Log in Entries RSS Comments RSS WordPress.org Chris Pollach PB ArticlesAppeon Learning Center January 29, 2014** Hot News **Appeon&#039;s World Tour 2014 Coming to Charlotte January 29, 2014** Hot News **Appeon 2.0 - Production Availability January 29, 2014** Hot News **Ottawa Sybase User Group - Closes its Doors January 27, 2014STD FC&#039;s - Best Year Ever! January 22, 2014** News Update **Software Tool & Die Inc?Foundation Classes forread moreSTD FC&#039;s - End of Support for PB.Net January 21, 2014 Microsoft.NET Developers JournalCloud Computing? Corning Sees the Light February 20, 2014In a recent Corning whitepaper, The Connectivity Premium, it discusses how commercial real estate developers can profit from forward-looking strategies in network infrastructure and wireless connectivity. Corning quotes ABI research that points out there are over 10,000,000,000 mobile devices already connected wirelessly, with that number expected to expand [&hellip;]Book Review | Windows 8.1: The Missing Manual February 17, 2014I have said more than once that one of the biggest misconceptions people have about my skill set is that because I can develop software for the iPhone, iPad, and Windows 8 tablets, I must know everything there is to know about using them. 90% of my time spent on a computer is spent in code, UML tools, and using basic Word functionality. I do not play games, [&hellip;]Book Review: Microsoft SQL Server 2012 Unleashed February 14, 2014Another Unleashed behemoth!!! It is a whopping 1683 of printed pages and 2765 pages when you include the additional chapters available in the eBook you get with the printed book. If this book doesn’t contain the information you need about SQL Server 2012, then you probably won’t find it anywhere. Just like I am not a server administrator, I am not a Database [&hellip;]Book Review | Microsoft SharePoint 2013 Pocket Guide February 6, 2014This little book is packed with tons of information. The authors did a good job of selecting topics that SharePoint administrators need to know, but may use so infrequently, they don&#039;t retain the details. In today&#039;s IT world that is just life. A little over a year ago we upgraded from 2007 to 2010. By the time the process was over, I had a 120 page [&hellip;]Forrester: Cloud Joins Formal IT Portfolio in 2014 January 3, 2014Forrester Research is looking forward, and what it sees is cloud as commonplace in 2014. In 2013, enterprises got real about cloud computing. In 2014, businesses will integrate it into existing IT portfolios, whether IT gives its blessing or not. As the Age of the Customer arrives, all the focus shifts to the Systems of Engagement and the agility in refining [&hellip;]Charmed by the Deep Insights of APM December 10, 2013In a perfect world, APM has all the right elements in place, providing value to the business and IT by giving us the metrics we need and showing us the health of our applications. It alerts us to anomalies when slowdowns occur, and shows us trends on performance. But there are other elements in play...read more PowerBuilder Developers JournalSAP to Announce a New Version of PowerBuilder November 22, 2013Tuesday night, SAP confirmed that they will be presenting the official PB Roadmap during the PB World Tour in Europe. After months of speculation, confirmation arrived that SAP will officially support PowerBuilder, and that a new version will be released containing additional features. This announcement will be made directly by SAP to the community during th [&hellip;]Appeon Mobile 2.0 Beta November 7, 2013Appeon Mobile 2.0 Beta androidGet Your Beta Accounts Now! Be the first to deploy apps for Android with PowerBuilder! Appeon plans to launch the Beta version of Appeon Mobile for Android in mid November. We&#039;re looking for people with all kinds of PowerBuilder development experience to participate in this beta program.read moreDo You Need to Connect to SQL Anywhere 16 from OpenOffice 4.0? September 1, 2013Sybase Central 16 is a very nice interface and I never encountered any problem from its earliest version (I jumped in at version 9, may be). However, if you want to connect to a database and create tables; run queries; create views; create forms and reports you can use OpenOffice 4.0 which is very simple to use. When you install SQL Anywhere 16 it comes with [&hellip;]Whither Windows? April 20, 2013One of the questions that I’ve been pondering lately is what will become of Windows. Based on the buzz about BYOD (bring your own device), tablets and the like, and the less-than-stellar reception of Windows 8 and Surface (Microsoft’s Windows 8 tablet), you’d think that Windows was on its last legs. Combine this with the “death of the PC” hype, and things lo [&hellip;]Come on in, the Forums Are Fine… April 3, 2013What forums you may ask; the Sybase NNTP forums? No, those are going away. Not on the schedule that was originally proposed (December 1 of 2012), but they will go away soon. Replacing them are the online discussion forums in the PowerBuilder Development Center (PDC), part of the SAP Community Network (SCN). Never fear though, the information on the Sybase NN [&hellip;]A Look at Appeon Mobile April 1, 2013I am here to tell you it’s true. You can write iPad applications in PowerBuilder. I’m sure that you are waiting for the other shoe to drop but ladies and gentlemen, there is no other shoe. It is simply the truth. You can write iPad applications in PowerBuilder. Those of you who have iPads, have you ever seen an MDI application running on an iPad? No? Neither [&hellip;] Copyright &copy; 2014 Displaced Guy. Return to top Powered by WordPress and the Graphene Theme.