Click here to Skip to main content
15,901,035 members
Everything / Builder

Builder

Builder

Great Reads

by Andy Point
Android Alert Dialog Tutorial : Working with Time Picker, Date Picker and List Dialogs In this tutorial we will discuss how to use dialogs and alerts in Android Apps. A Dialog is a small popup shown to the user to get some additional information from the user or ask him to make some decision. Alert
by M@dHatter
PHP Magic String Builder with Append Format.
by Tomáš Růt
Bobril-build
by Fatih P.
Here is the one i wrote sometime ago/* ---------------------------------------------------------------------------- * Teknober.com - All rights reserved * ---------------------------------------------------------------------------- * File Name : TStringBuilder.php * Section ...

Latest Articles

by Jason Sultana
Common practice that I employ in test projects - re-usable mocks
by Tomáš Růt
Bobril-build
by Andy Point
Android Alert Dialog Tutorial : Working with Time Picker, Date Picker and List Dialogs In this tutorial we will discuss how to use dialogs and alerts in Android Apps. A Dialog is a small popup shown to the user to get some additional information from the user or ask him to make some decision. Alert
by ASP.NET Community
The builder pattern describe a way to separate an object from it's construction.The same construction method can create different representation of

All Articles

Sort by Updated

Builder 

22 Jan 2024 by Red Kipling
thanks for help problem resolved
15 Jan 2024 by Richard MacCutchan
This is not a programming issue, you need to get help from CKEditor 5 | Powerful Framework with Modular Architecture[^].
15 Jan 2024 by Red Kipling
I have installed ckeditor5 in my forum But the issue is after submit a css code for example (shown correctly in editor) it is shown like a plain text (code block plugin is installed) The table is not shown after submit but it is shown...
5 Aug 2023 by Jason Sultana
Common practice that I employ in test projects - re-usable mocks
24 Jan 2023 by Josh McFadden
A couple of friends and I are front-end designers who are venturing into the world of web app development for the first time and we're looking for some guidance and feedback on our concept. We believe we will be using React for this project, but...
27 May 2022 by Phoenix Liveon
How do we implement some buildTypes and flavors configs for our project(library or an application). I had a hard time finding tutorials or references about it, especially if it is implemented in kotlin-dsl. I tried to simulate the concepts from...
27 May 2022 by Rick York
I am not entirely clear on what you are asking but I'll take a shot. First, there are two kinds of libraries you can build - statically linked and dynamically lined. You define which kind(s) in the project settings of the library's solution. ...
26 May 2022 by Phoenix Liveon
Why is this syntax not working as expected? it compile and can run, however it did not give me the expected result ServiceLoader sl = ServiceLoader.load(ServiceMod.class); for(ServiceMod sm : sl) System.out.printf("status:...
13 Apr 2022 by Phoenix Liveon
It seem there's a bug or maybe the local vscode application in my computer got corrupted? But the multi-module projects or subprojects features are working properly and I already configure the "gradle.nestedProjects" to TRUE, nonetheless I want...
1 Apr 2022 by Phoenix Liveon
The issues were caused by a lack of specification in our build tool/dependencies script's configuration, which we need to add/configure via "runtimeOnly" or "implementation," So then we can tell�our build tool�that before running/executing or...
21 Nov 2019 by RickZeeland
Maybe you can take a Wiki as an example, here is a list: Open Source Wiki Engines in C#[^] [Edit] the links mostly seem broken, sadly I could not find a suitable example Wiki for you :( For generating HTML you can use HtmlTextWriter see: https://www.dotnetperls.com/htmltextwriter[^]
21 Nov 2019 by Member 14663704
I am going to be developing a simple website builder for my final year project, the web application will allow the user to logon and select a template. The user will then fill out input boxes upload images etc for each page. The user can build whole website by just selecting the content and...
4 Nov 2019 by peytuk
How to handle dynamically created form's MouseDown or MouseUp event? Using: TMouse * event= dynamic_cast(Sender); does not throw any error but doesn't do the work either. According to C++ Builder's reference TMouseEvent is the function type for either an OnMouseDown event or an...
4 Nov 2019 by CPallini
Such a cast is invalid, of course, since TMouseEvent is the type of the event handler (that is the function, it has nothing to do with the sender). See this page for sample code: TControl.OnMouseUp Event[^].
25 Jul 2018 by Chau Chun
I'm develop a website to provide user design they own website by drag and drop without any programming skill. I'm searching for a Website builder tool with the following requirements: Drag and Drop interface Open Source; Capable of exporting local files I wasn't able to find a tool to fit this...
31 May 2018 by Rick York
Have you look at Schneider's page on the drives? Example Programs - Schneider Electric Motion USA[^] Apparently there is VBA code that allows one to control it through a spreadsheet. If it is simple enough that you can do it in VBA then you should be able to adapt that code to whatever...
31 May 2018 by Member 11268857
Hello ! i would like to ask you if it is possible to show us the source code in c# so that i can have an idea on how can we control the mdrive through a c++ application, thank you ! What I have tried: all i can do for now is controling the mdrive directly from the IMS terminal.
29 Mar 2018 by OriginalGriff
Wrong site: this is for Software Development, not construction.
7 Feb 2018 by ajie1166
when I create the .chm document,it show the error on the below:I don't know why ,so I can't solve the problem,ask for help-------------------------------[Sandcastle Help File Builder, version 1.9.8.0]Creating output and working folders...Finding tools...Found Sandcastle tools in...
7 Dec 2017 by draculamx
std::string f; f.append(0,2); f[0]=2; f[1]=1; //f="cd"; std::string s; s.append(0,5); s[0]=1; s[1]=2; s[2]=1; s[3]=3; s[4]=1; //s="abcde"; unsigned int pp=0; pp=s.find(f); this code work fine in Visual Studio 2008 sp1,operation system is Win7 64Bit sp1 but in C++ Builder...
7 Dec 2017 by draculamx
s.append(0,5) //wrong s.append(5,0) //right sorry for waste your time......
6 Dec 2017 by draculamx
OK,someone told me a solution change "f.append(0,2); s.append(0,5)" to "f.resize(2); s.resize(5)" then it's work fine!!
6 Dec 2017 by draculamx
the std:string not only use for charactors,in fact it can store data like BYTE each element. so ,why "abcde" work,but "0x1,0x2,0x3" not work ?? and these code work in Visual Studio 2008 fine.....
6 Dec 2017 by Rick York
I think you could write : f[0] = 'c'; f[1] = 'd'; or f[0] = 'a' + 2; f[1] = 'a' + 3;
13 Nov 2017 by Member 13519416
I need to dynamically create two Oracle tables in Oracle Report Builder 6i. Based on the parameters would determine the table name. The new table would be updated with cursors. What I have tried: I tried using the data model for the structure of the output report. I used the after parameter...
31 Oct 2017 by OriginalGriff
Quote: I need a proper structure to pull out flights based on search. I want generic structure to filter out the flights not only for above mentioned search criteria but also for more generic ways. We do not do your homework: it is set for a reason. It is there so that you think about what you...
21 Jul 2017 by Member 3715714
Hi, I'm having trouble working with TWebBrowser in RAD Studio Xe8 C++ builder. I can't figure out how to access elements on a webpage, like reading the content of an input field... All the relevant examples that I've found are in Delphi, I tried using this...
21 Jul 2017 by KarstenK
You must acquire the correct interface to call the method. This should work, but should access the website at the correct handler, like OnDocumentComplete. Look like here is some helping code to understand the Document and the access to its content. (I didnt find anything better)
27 Jun 2017 by Member 13082215
Have been working on C++ Borland builder 5.0 using windows XP OS. In an application, now have to do modification existing application. Using IP camera, have to display live streaming video on opengl window using UDP communication. Anyone can suggest how to proceed initially. Is it possible to...
27 Jun 2017 by Rick York
I would start by looking at articles on this site. There is one called SimpleUDP that shows how to handle UDP socket communication. There are a ton of samples of OpenGL code and it is highly likely that one covers displaying bitmaps. I'm not sure why OpenGL is a requirement here because you...
15 Dec 2016 by raniam
Hello,I'm performing an encryption/decryption functions within a client/server application.the server sends an encrypted value to the client.NOTE: The part where I copy the encrypted value into char * have solved the problem of sending the value to the client with the first character...
15 Dec 2016 by Jochen Arndt
You are returning a pointer to the decrypted message which is no longer valid:const char * Client_Side::AES_Decrypt(/*...*/){ CkCrypt2 decrypt; // ... const char * Decrypted_Message2 ; //Decrypted_Message1 = decrypt.decryptEncoded(rec_enc_msg1); Decrypted_Message2 =...
15 Dec 2016 by raniam
Hi,In a client/server application, the server is sending an encrypted value to the client: const char * Enc_Message2 = AES_Encrypt(Message2, Shared_Session_Key_S, I_V); cout
15 Dec 2016 by raniam
Hi again,I've just fixed it, by adding the following code at the server-side, right before sending the encrypted result.int e = strlen(Enc_Message2); char * enc_msg2 = new char[e+1]; strcpy(enc_msg2, Enc_Message2);5 =clientSock->SendString(enc_msg2); if (s5 != true)...
15 Dec 2016 by raniam
Hi,I'm performing an AES encryption/decryption process (using the Chilkat AES encryption functions).The encryption result is performed smoothly and being sent from the client to the server.The problem is with the decryption function, every time the function tries to decrypt the...
15 Dec 2016 by KarstenK
The problem is most in such cases, that input data format isnt the proper format and gets casted to some data which gets encrypted. Another common issue is that, the cypher process isnt correct initialized.Take a look at this example code from Chilkat to find your bugs.Tip: use some test...
14 Dec 2016 by Patrice T
Quote:The problem is with the decryption function, every time the function tries to decrypt the received encrypted-result, it returns garbage!!!!How do you know that the problem is in decryption function ?The fact that encryption function return encrypted string do not imply that the...
26 Jul 2016 by Vincent Maverick Durano
A data represenation control like GridView will present data based on the datasource assigned to it. If you want to remove duplicate row data then you'll have to manipulate the data before binding it to GridView. What you can is filter out duplicate data in your SQL query as already suggested or...
18 Jul 2016 by Andy Point
Android Alert Dialog Tutorial : Working with Time Picker, Date Picker and List Dialogs In this tutorial we will discuss how to use dialogs and alerts in Android Apps. A Dialog is a small popup shown to the user to get some additional information from the user or ask him to make some decision. Alert
18 Jul 2016 by Member 12641489
Problem: I have inherited a fairly robust Sharepoint 2010 Extranet where our organization generates work orders, delivery slips and other documents for providing different services like Laundry, Janitorial, Yard etc. I have SQL experience, but am a novice on Sharepoint, but I think I have a...
31 Mar 2016 by raniam
Hi, I'm having this problem, where I have this const char * Decrypted_Message2 that contains a certificate, browser nonce, and a Server Nonce (Separated by a delimiter ,).I have this function that split them individually, using the delimiter "," character. And I want to retrieve the second...
31 Mar 2016 by Jochen Arndt
I don't know why the string becomes empty. A probable reason may be a stack corruption but I don't see one in your code.But I suggest to change the split code because there is no need to call the split function multiple times and - more important - it contains a memory leak.The...
8 Jan 2016 by Dave Kreskowiak
It looks like you're building a string that contains some formatted version of 1.6 Million rows. Considering no object in .NET can be larger than 2GB in size, including the contents of a StringBuilder, this may be your problem. Or the resulting String object is bigger than that.Build one...
8 Jan 2016 by Charles Shob
Hi All,Basically i am trying to migrate data from SQL Server to SQLCe 4.0; It is an on going process, which means for product versionised DB is managed on SQL Server and i need to create a table in SQLce for desktop application.Here i am using c# to write a migratory which is migrates...
14 Jul 2015 by Dave Kreskowiak
Not without extreme pain. There is no easy way to do this.There are no events anywhere that will tell you that a file is being accessed.I'm not even sure you can do it without admin permissions on the machine as I don't see any way to do this without some kind of file system filter...
14 Jul 2015 by Sidtrey
Assuming "accessed" means modified, yes, just check the fileinfo, lastwritetime. Psudo code: FileInfo fi=new FileInfo(myfilename);Just check that and when it changes do something... and yes you can use the filewatcher too.. I prefer my method on a timer or in a loop.
14 Jul 2015 by Member 11836956
I have a power builder application, unfortunately i don't have source code. This application reads server detail from .ini file. Now the question is how to secure the data inside that file from user. As i don't have the source code so i can't build some logic inside Power builder application. I...
26 Jun 2015 by Shibiny
i want to translate English words to Malayalam like google translator in my power builder application.is it possible???
5 May 2015 by Hamza Javed
Hi,i'm working on a report and its almost complete but i'm having a little problem in calculation. i want to use the value of above cell of same column. if i use Previous() function then it gives me above whole row but i only need the above cell of same column. And this column is not the...
10 Mar 2015 by Hamza Javed
Hello,i'm using report builder for SSRS reporting. I have a list of more than 200 people. what i want is that records should be displayed in two columns. like if 30 records can appear at one time on page than next 31 to 60 records should appear on same page in next column. please do reply as...
25 Nov 2014 by Member 11262217
I should write OPC-client on Builder C ++ library, OPCAuto.dll from Matrikon. I search for examples or the description, while unsuccessfully. Please, help to find.
9 Oct 2014 by Sergey Alexandrovich Kryukov
You never need to use CMD.EXE to run some application or OS command. Use the command itself. For renaming files, use OS API, not a command.—SA
8 Oct 2014 by Richard MacCutchan
See http://scn.sap.com/community/developer-center/powerbuilder[^], and the same for your other question on the subject.
8 Oct 2014 by Shibiny
how to rename a text file in power builder 7
8 Oct 2014 by Shibiny
how to copy a text file data to another text file in poewr builder 7
13 May 2014 by JJMatthews
const char* pszConverted = CW2A(pwstr);
11 May 2014 by KarstenK
string conversion is a highlight of the iOS classes, compared with the glue code is needed in the Microsoft world.it is so easy:const char *cString = [@"Hello, world" UTF8String];read the iOS NSString Documentation
11 May 2014 by raniam
hi,I'm building an IOS application, and I was wondering how can I convert a value entered into Edit1->Test (Which is of type UnicodeString) into a (const char *), in order to be used in another function that requires const char * as a parameter.best regards.Rania
30 Apr 2014 by CHill60
Not convinced that you can due to security restrictionsSee responses to this post[^] which includes a "work around"
30 Apr 2014 by raniam
HelloI'm trying to build an IOS application, and I was wondering how can I extract the mobile number from the SIM card programmatically?Best Regards.Rania
9 Apr 2014 by CHill60
Here's the link to CodeProject's collaboration forum[^]and here's a link for finding people you will have to pay http://www.freelancer.com/#rac[^]or you could get involved with something like open innovation network[^]
25 Mar 2014 by Member 10161384
name space for String Builder using System.Text;
11 Mar 2014 by raniam
helloUsing c++, how can a server access the client's certificate store, in order to get the client's digital certificate?CODE will be very helpfull :)Best Regards.Rania
2 Mar 2014 by Richard MacCutchan
See https://developers.google.com/youtube/[^].
2 Mar 2014 by brodcasting
i want to upload video on youtube using c++ builder.
28 Feb 2014 by raniam
HiI've build a client/server framework in a C++ environment (C++ Builder XE3), using chilkat packages. And now i would like to validate my work, and simulate it in real-life, in which the client requests an online-form from the server (GET), and submit the filled information (POST) to the...
24 Dec 2013 by ajie1166
I get the answer :I should install the MicroSoft Html help,after install it ,the problem will be solved;and the download url:http://www.microsoft.com/en-us/download/details.aspx?id=21138[^]
7 Dec 2013 by Sergey Alexandrovich Kryukov
I used to use lame for a while, until I realized that it's just not so serious thing. I would advise to use much more advanced open-source library: libavcodec, or FFmpeg which includes...
7 Dec 2013 by Sergey Alexandrovich Kryukov
Please see my comment to the question. The software for "converting" Web sites to native application universally does not exist, not because it is difficult or something like that, but because this is not a well-posed problem, not something certain or having any certain sense. If you need some...
7 Dec 2013 by naflas
I am looking for a open source software to develop websites ( e.g shopping cart,CMS ,online quiz) and which can be used to covert the website in to native apps so they can be put on Apps stores.I have been using wordPress, but there is no FREE plugin available to convert the solution to...
7 Dec 2013 by idle63
I suggest you to simply install lame as codec and using it thisway "indirectly" by win api.1. Your application is not depended on lame as codec2.) It works
7 Dec 2013 by Igor-84
I try to compile the code that I found.At first I downloaded the archive with lame sources from here: http://sourceforge.net/projects/lame/.Then copied the lame.h-file from folder lame-3.99.5/include to folder with my project.Next I included the header:# include When I try to...
31 Oct 2013 by Member 9824543
Yes, I want Reading the value of that TextBox (Form1->Edit7->Text) and next I want put this value into SQLite 3.1 database
29 Oct 2013 by Member 9824543
Please help me. How I can add value from Form1->Edit7->Text text field into SQLite database version 3.1 ? How do it via db.execDML() instruction ? I must convert this data ? When I add value like 7,8 etc. this work correctly, i use instruction: db.execDML("insert into emp values (1,2,3);");...
11 Oct 2013 by ASP.NET Community
The builder pattern describe a way to separate an object from it's construction.The same construction method can create different representation of
30 Jul 2013 by The_Inventor
The DSW is a 'project configuration' file much like CSPROJ file types. You will need a standard RICH_FILE_TYPE, or TXT_TYPE word processing program like 'Notepad' or 'WordPad' that comes standard with a Windows operating system.Open/Edit with WordPad or similar program, and edit the file to...
29 Jul 2013 by Member 9974582
How to build log4cxx with Visual Studio 2010[^]There is a description in this article how to build log4cxx for visual studio but how do it for c++ builder ? I suppose that steps from 1 to 8 are the same for both environments but what to do in the next step if i cannot use dsw file in c++...
7 May 2013 by Nayan Ambaliya
Hi, Please review the following:I have developed a report using New Report in Visual Studio 2008 (rdlc format) and Visual Studio Data Sources.this.reportViewer.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Local;this.reportViewer.LocalReport.ReportPath =...
7 May 2013 by sovan roy
Hello everyone, I've created a report using Sql Server Report Builder 3.0 with SQL Server 2008R2.I've saved the report in local machine. The report populates data fine. Now my requirement is that I'll have to view that report on a button click inside a reportviewer in a .aspx page....
16 Mar 2013 by raniam
Hi,,i'm working on programming a client/server network in C++ Builder, and i was woundering if: 1-the client can send his certificate to the server?, and how can i do it? 2-What is the best certificate format to use (PFX, cer, PEM, DER)?Need help pleaseRegards
19 Feb 2013 by Stefan_Lang
This is just a guess, but in EncryptString() you could change rsa.put_EncodingMode("hex");torsaEncryptor.put_EncodingMode("hex");and in DecryptString() you could changersa1.put_EncodingMode("hex");to rsaDecryptor.put_EncodingMode("hex");Another thing you could check is the...
17 Feb 2013 by raniam
Hi,,,I'm using C++ Builder XE3, to build an application that encrypts a mobile number and decrypts it using RSA encryption/decryption (from Chilkat Software). The problem is that when i divided the method into two functions (one for encryption, and one for decryption), the Encryption...
22 Dec 2012 by lilyNaz
I used SHBrowseFolder instead and everything turned out OK.
16 Dec 2012 by dragon9098
1.void __fastcall TForm1::Timer1Timer(TObject *Sender) 2.{ 3. if(0.0055 SeriesColor = clRed; 6. AreaSeries2->AddXY(n,Number); 7. } 8. else 9. { 10. AreaSeries1->SeriesColor = clLime; ...
29 Nov 2012 by Dharmateja Challa
To trap EInOutError enable "I/O checking" in the Pascal tab of the project options in order for EInOutError exceptions to be trapped. It seems EInOutError is a delphi class
27 Nov 2012 by lilyNaz
I have written a code in C++ builder in which I use header FileCtrl.hpp and I call SelectDirectory procedure so that the user can choose the a directory. When I change the drive to empty floppy disk or DVD drives, I get Exception EInOutError. I used try catch, bu it didn't work.try{ ...
1 Nov 2012 by CafedeJamaica
To use the string builder in asp.netFirst add to your class using System.TextSecond add to your codevar myStringBuilder = new StringBuilder();if that fails check your references
1 Nov 2012 by Deenuji
how to add string builder namespace in asp.net???? i can add in c#.net but i can't in asp.net!!! pls any one help me???
20 Sep 2012 by Aditya_Pandey
You can try uninstalling the App on Galaxy Nexus and after reinstalling please check if it works.It happened to me also and it worked for me. Try with a lower version of Android.
18 Sep 2012 by Maciej Los
The only way to achieve that is to change a query:SELECT membershipid, billamount, SUM(transactionAmount) AS transactionAmountFROM membership m inner join bill b on b.membershipid=m.idleft outer join transaction t on t.billId=b.idGROUP BY membershipid, billamountORDER BY membershipid,...
14 Sep 2012 by Hadi Basiri
Dear,I am building a report using report builder 2.let say the data from my query is look like below: Select membershipid,billamount,transactionAmount From membership m inner join bill b on b.membershipid=m.id left outer join transaction t on...
19 Jun 2012 by Manish Kumar Namdev
Hello everyone, I have built and android application using Flash Builder 4.6 with captative runtime.When I'm running this application on my Motorola phone it works fine.But as I try to install it on my Galaxy Nexus phone this is'nt working and stating an errorError Parsing in...
15 Jun 2012 by Manish Kumar Namdev
Finally found the solution after spending two days on this.in update function add OrientationChanging Event in stage.addEventListner.protected function update(event:AccelerometerEvent):void{ this.stage.autoOrients = true; ...
13 Jun 2012 by Manish Kumar Namdev
Hello friends,I'm working with FlashBuilder 4.6 to develop Android app.In the application there is a requirement of setting some values when device orientation changes. i.e. setting the values when the screen/device orientation changes from Landscape to Portrait and vice-verse.Although...
5 Jun 2012 by Sergey Alexandrovich Kryukov
No, it is not helpful for anything related to COM (by the way, why using COM at all?!).It can be useful to create some assembly which can be used almost exclusively as a library. You can actually use it as application, but the only way to return anything I can see right now would be the exit...
27 May 2012 by Manish Kumar Namdev
Hello I found the solution. There no horizontal Spinner List. Therefore need to make a control.
25 May 2012 by Manish Kumar Namdev
Hello friends,I am using SpinnerList in my applicaiton and by default it has a vertical layout. But I have a requirement of Horizontal SpinnerList.I tried rotation but that was not enough. ...