51

(12 replies, posted in General)

thanks,

i want to try another thing,

i have a script to change the cell color of a tablegrid 15 days before a date arrive.

how can i make a report to print only this dates? because there are many cells with a date longer than 15 days.

or other option, is there a way to print all the dates that belong to current month?

52

(12 replies, posted in General)

so to display alerts, beside change the cell color, and display a message box for example, what other options do you recommend for example?

53

(12 replies, posted in General)

Hello,

i have a script in my project to change a table grid cell color when a date in neer, for example,  15 days before a date of a event the color of the cell will turn red.

is there a way to specify an email and send an email with a message alert 15 days before the date?

54

(7 replies, posted in General)

the problem was because the path like mr_d said.
Already solve it wink

thanks to both

55

(7 replies, posted in General)

tomorrow  i will try it wink

56

(7 replies, posted in General)

i will try the two solutions tomorrow wink

DriveSoft wrote:

Hello,


Try to run the project on a remote computer directly from the shared folder.

if i do that it will solve for the other pcs? for example if i have four remote computers, should i run only in one? or i have to do in all of them?

57

(7 replies, posted in General)

Is anything to do with the option where the database is saved?

58

(7 replies, posted in General)

Hello,
I don't know if i'm doing anything wrong but if i share my project on a local network, in the other pc they can open and do everything in the project, the only thing that is not working is one datafield.

I have a data field in the project to link to a folder , of i give it a way for that folder and save it, in the other pc if they click to open it, nothing is opened.

59

(10 replies, posted in General)

i was already thinking in while cycles and everything else, and you make it so simple.



thanks

60

(10 replies, posted in General)

i did this:

procedure Form1_Button4_OnClick (Sender: string; var Cancel: boolean);
begin
Form1.Edit3.Text  :=  Form1.ComboBox1.Text;
end;

but it works fine only if i just want to choose one option of the combobox, because if i choose another and click on the button it will erase my first choise that is on the textbox and will write second, but what i want is to send as many choices of the combobox that i want and separate them with "," on the textbox.



or send instead of the textbox send to a memo and make each choice per line.

i dont know how to do it sad

61

(10 replies, posted in General)

i dont have a project yet, i'm just making examples to learn a little more.

basically i want to click on the choices that i have on combobox and copy them to a texbox.

62

(10 replies, posted in General)

But if i want to save two fields of the same combobox? I think i have to add a button and create  a onclick event right?

For example if i have the three fields that i said in my first post, i want to choose text1 in the combobox and click on the button to add text1 in a textbox, but after i choose text2 on the combobox and click on the button it will add text2 on the same textbox and it will appear for example in the textbox:

text1,text2

Is this possible?

63

(10 replies, posted in General)

Hello,

how can i make selections in combobox and copy them to a textbox?

for example:

if i have a combobox with 3 choices:

text1
text2
text3

if i click on text1 it will add "text1" in a textbox, and the same for the other options.

64

(6 replies, posted in General)

already send

65

(6 replies, posted in General)

DriveSoft wrote:
Montenegr0 wrote:

hello,

in the example PhoneBook for example, is there any way to search all the options only in one TextBox?

You can do it using SQL Query, example project:
http://myvisualdatabase.com/forum/misc. … download=1

and if i have to search the content of two diferent tables? what i have to write on sql query?

66

(6 replies, posted in General)

another question, if i put my froms sizeable, if i maximize them they maximize the window, the buttons and everything else will be at the same size.

is there any way to maximize the window and everything "adjusts" to the size of the window?

67

(6 replies, posted in General)

hello,

in the example PhoneBook for example, is there any way to search all the options only in one TextBox?

68

(3 replies, posted in General)

after a little search in the forum i found what i was looking for wink

thanks anyway wink

69

(3 replies, posted in General)

I'm not in home at this moment, can you please make me a very simple example?

Thanks

70

(3 replies, posted in General)

Hello,

is it possible to have in a form a text field that if i wrote "ok" in table grid it appears "ok" in green.. But if i wrote "bad" in appears "bad" in red on table grid.

71

(4 replies, posted in General)

thanks Dmitry

72

(4 replies, posted in General)

and by the way, how can i select a date in one form and display that date in a texbox e another form?

thanks

73

(4 replies, posted in General)

Is it possible to have two procedures in the same procedure?

what i have is:

procedure frmManutenção_DateTimePicker1_OnChange(Sender: string);

begin
   frmProduto.DateTimePicker1.Date := frmManutenção.DateTimePicker1.Date;
end;
procedure frmManutenção_DateTimePicker2_OnChange (Sender: string);
begin
   frmProduto.DateTimePicker2.Date := frmManutenção.DateTimePicker2.Date;
end;

but i want to have only one procedure for all.. is possible?

thanks

74

(2 replies, posted in Reports)

thanks once again

75

(2 replies, posted in Reports)

i'm having a little problem doing a report from a table grid..

i have a report button that makes a report from all the products that i have on a table grid, but if i click in one product of the table grid, the report only print that product... but i want always print all the products of the table grid, even if i click in one.. but the problem is, if i click in one, i can't clear the selection that i make on him and i never can print all the products again, only if i close and opens mvd again.

is this a bug or i´m doing something wrong?