Posts by RaphaelZ • 376 points
10 posts
-
2
votes3
answers5303
viewsA: Firebird, Insert com Where not exists
I understand what you need; you can do a process and run when you need to. Just take into account of course, that you will have to make some adjustments to it as I do not know your database. Next:…
-
0
votes1
answer472
viewsA: Alternative mobile development - Java FX, Android, Codenameone
Try the appery.io Because it’s a good option: Use jQuery, jQuery mobile and Phonegap libraries; Use javascript language for any platform; Easy to design graphical interfaces; Compile apps for…
-
3
votes3
answers14922
viewsA: Consume webservice dynamically
I needed something like this some time ago, and I got excellent results with this function:…
-
0
votes2
answers1075
viewsA: How to remove file from TFS Team System source control but not remove it from the project
Try a Branch. In Visual Studio, go to the Team Explorer tab and open Source Control Explorer. Search the file tree for the file you want, right-click it, go to the 'Branching and Merging' menu, and…
team-foundation-serveranswered RaphaelZ 376 -
1
votes2
answers1492
viewsA: Open Outlook by clicking an email on the Tdbgrid component in Delphi
Add the Unit shellapi and try this in the Cellclick event. Change the 'EMAIL FIELD' to your field name, uppercase if applicable. procedure TForm1.DBGrid1CellClick(Column: TColumn); begin if…
-
3
votes5
answers14262
viewsA: How to sort list with complex object by one of its properties?
Try to use Linq: var objetosEmOrdem = (from o in objetos orderby o.Desc select s);
-
6
votes4
answers5887
viewsA: Is it possible to clone objects in Delphi?
Depending on the class, yes... Try to create a zTable at runtime and use the command: zTableCriada.Assign(zTableOriginal); Let me explain: Assign serves to get 'in theory' all the data from another…
-
1
votes1
answer538
viewsA: How to import MDB file read and write to SQL
Try the following. Just be sure to adapt your INSERT with all available columns/fields. public void Insert() { string strFile = Server.MapPath("~/Upload/teste.mdb"); string connectionString =…
-
2
votes3
answers2309
viewsA: Update secondary form without changing primary focus
Try this: procedure BotãoFormGridClick(Sender: TObject); begin FormulárioMapa.Visible := False; // Oculta o form, fazendo com que qualquer // foco não seja executado…
-
2
votes2
answers408
viewsA: What is the simplest way to recover certain elements of an XML with Linq?
Use: var clientes = System.Xml.Linq.XDocument.Load(@"C:\TEMP\arquivo.xml"); var livros = new List<string>(); foreach (var cliente in clientes.Root.Elements()) { foreach (var livrosEdocumentos…