Respuesta
en
Delphi
a
Como hago para que limpie el edit y el puntero aparezca en el mismo edit
Para limpiar: Edit1.text := ''; Para llevar el foco: Edit1.SetFocus();
Respuesta
en
Delphi
a
8 reinas
Ahí va, solo hay que traducirlo: // 8 reinas.cpp : Defines the entry point for the console application. // #include \"stdafx.h\" #include \"iostream\" #include \"vector\" #include \"cmath\" #include \"algorithm\" using namespace std; const int N = 8;...
Respuesta
en
Delphi
a
Como imprimir un informe
Es bastante sencillo. Delphi incorpora Quickreports, una manera de hacer listados visual y basado en bandas que se repiten. Según la banda donde pongas un componente QR se repetirá una vez al principio de la página, al pie, o por todo él. Aquí tienes...
Respuesta
en
Delphi
a
Abrir Documento
Example code : Illustrating single file selectionTOpenDialog; // Open dialog variable Begin // Create the open dialog object - assign to our open dialog variable openDialog := TOpenDialog.Create(self); // Set up the starting directory to be the...
Respuesta
en
Delphi
a
Como Llamar un Componentes
Debes usar findcomponent, te paso un ejemplo: Instead of writing: / Anstatt so was zu schreiben:} Edit1.Text := 'Text 1'; Edit2.Text := 'Text 2'; Edit3.Text := 'Text 3'; Edit4.Text := 'Text 4'; {...} Edit9.Text := 'Text 9'; {...it's easier to write /...
Respuesta
en
Delphi
a
Cambiar el color de filas en un dgrid
Este código te pinta las filas pares y la seleccionada de otro color: procedure TfrmCelulas.GrillaIntDrawColumnCell(Sender: TObject; const Rect: TRect; DataCol: Integer; Column: TColumn; State: TGridDrawState); begin if (Sender as...
Respuesta
en
Delphi
a
Autocad
Todo integrado no conozco ninguna. Para el tema gráfico tenemos varias herramientas 2d que te permiten dibujar fácilmente CorelDraw, Freehand, Autocad, ... También es posible crear una aplicación sencilla que cree elementos "vivos" que se guarden en...
Respuesta
en
Delphi
a
Error con QuickReport.
Puede que supere su espacio en disco y deba ejecutar el listado en diversas partes, en vez de todo a la vez.
Respuesta
en
Delphi
a
Mantener una conexión activa con SQL
Crea un componente TDatabase, escoge el alias, nombre y driver SQL Server. Dale a Defaults y rellena username y password: DATABASE NAME= USER NAME= ODBC DSN= OPEN MODE=READ/WRITE SCHEMA CACHE SIZE=8 SQLQRYMODE= LANGDRIVER= SQLPASSTHRU MODE=SHARED...