You are not logged in.

Search results

Search results 1-20 of 88.

Monday, February 11th 2013, 11:10am

Author: fomaxrge

windos 8 installation problem

Hi Dani, as always you saved me! Thank you very much! Everything works perfect!

Thursday, February 7th 2013, 8:41pm

Author: fomaxrge

windos 8 installation problem

hello again. I finished my program and now that i have to run it at another pc that has windows 8 i have the following problem could you please help me.. "ERROR JAVA TM INSTALLER" download failed from = /jre 1.6.0_15.msi,to = C:\Users\myuser\AppData\LocalLow\Sun\Java\Jre 1.6.0_15\Jre 1.6.0_15 - c-l.msi when i run it it appears java-framework(JRE) is missing! thanks in advanced

Saturday, January 26th 2013, 1:16pm

Author: fomaxrge

send my textfields and JBGrid to printer

Something strange happening. When i am trying to run my project i have this error... java.lang.Exception: CallByName 'FIT_WIDTH' failed! BUT when i delete the code and write again it works! When i close my pc and next day open to work i happens again. Have you got any idea?

Thursday, January 24th 2013, 9:01pm

Author: fomaxrge

can't copy my directory

It works perfect. Thank you!!! Is there a way to have a msgbox inform me that the copy FINESSED?

Thursday, January 24th 2013, 1:21pm

Author: fomaxrge

send my textfields and JBGrid to printer

Unfortunately when i make imports i have many compile errors but i will make some more effords

Thursday, January 24th 2013, 12:14pm

Author: fomaxrge

send my textfields and JBGrid to printer

Dani edocprint worked perfect to me too. Do you now ... 1. if i can change the font size of header? 2. can i preset "landscape" 3. can i preset "margins" (top,left,right.left) instead of 25,4 TO 4? Thank you for your help and your time!

Thursday, January 24th 2013, 11:49am

Author: fomaxrge

can't copy my directory

Hi Dani! Because i am a little bit confused do you thing that i am ok taking back up my folder that mention above or have to make the dump?

Wednesday, January 23rd 2013, 8:10pm

Author: fomaxrge

can't copy my directory

Yes file/file works fine. Because i need to take a back up of my mysql database could you please inform me which files or directories are most important? I took a back up of -- >c:\xampp\mysql\data\mydb\... is that ok or need more? Thanks

Wednesday, January 23rd 2013, 12:31pm

Author: fomaxrge

can't copy my directory

Hi again i am trying to have a button in my api that takes back up. so i am doing something like this... Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 Public Sub Form_ToolBarClick(ToolBarItem As VB#IToolBarItem) If ToolBarItem.ControlID = "backup" Then intResponse2 = MsgBox("Θέλετε να δημιουργηθεί αντίγραφο ασφαλείας;", vbYesNo + vbQuestion,"Back Up") If intResponse2 = vbYes Then myfolderdate = Day(dd) &"."& Month(mm) &"."& Year(yyyy) 'MsgBox myfolderdate MkDir "C:\back_up"...

Wednesday, January 23rd 2013, 11:18am

Author: fomaxrge

send my textfields and JBGrid to printer

Hi Dani i am using microsoft xps document writer (as a test preview) because i do not have a printer now. There i can not see header or footer. Can you? Is there a possibility to see them ONLY when i print it? Quoted from "Dani" Dim Success As Boolean Dim strHeader As MessageFormat = New MessageFormat("Page {0}") Dim strFooter As MessageFormat = New MessageFormat("- {0} -") ' table.print(JTable.PrintMode printMode, MessageFormat headerFormat, MessageFormat footerFormat, ' Boolean showPrintDialog...

Monday, January 21st 2013, 3:55pm

Author: fomaxrge

send my textfields and JBGrid to printer

Dani i was trying to do something like this Jabaco Source 1 2 3 4 5 Public Sub Printtxt Dim File As vbFileHandler = Open("TempFile.txt") Write(File,RichTextBox1.Text) Dim D As Desktop = Desktop.getDesktop D.print(New file("TempFile.txt"))End Sub but line Jabaco Source 1 Dim D As Desktop = Desktop.getDesktop occurs compile error Have you got any idea why i have got this error?

Friday, January 18th 2013, 1:08pm

Author: fomaxrge

send my textfields and JBGrid to printer

Hi Dani you helped me a lot! Now i am printing separately JBGrid1.Parent.print and then JBGrid2.Parent.print Do you now a way to print JBGrid1 and JBGrid2 in one page - print?

Wednesday, January 16th 2013, 4:19pm

Author: fomaxrge

send my textfields and JBGrid to printer

Dani i am trying different ways to have the footer and header BUT until now i did not succeed it. I do not know what i am doing wrong but i am still having nothing as header/footer.

Tuesday, January 15th 2013, 1:56pm

Author: fomaxrge

send my textfields and JBGrid to printer

Dani because i did not have my printer in my laptop now i used microsoft xps document writer (as a test preview) JBGrid1.parent.print work perfect but i wonder is there a way to have my textfield1.parent.print AND textfield2.parent.print (IN ONE ROW) JBGrid1.parent.print ALL IN ONE PRINT! for example i need something like this from_date:21-05-2013 to_date:26-05-2013 JBGrid1 RESULTS

Tuesday, January 15th 2013, 11:43am

Author: fomaxrge

send my textfields and JBGrid to printer

Thank you very much Dani! I wish i knew your language it could help me more . I will have a look at the links! Thank you very much again!

Monday, January 14th 2013, 5:19pm

Author: fomaxrge

send my textfields and JBGrid to printer

Hi again. I have some textfields and a JBGrid with some rows(results after a search). I also have a button "print". How can i send my data to the printer.

Wednesday, January 9th 2013, 10:11pm

Author: fomaxrge

msgbox before close form

because i have another one form could you please help me how to do it because it seams a little bit complicated to me? I have a loading_form (that has progress bar) and when it comes 100% close (auto) and open... login_form that asks for username and password (if you put the right codes) then close and open... main_form that is the form that i have all my code. THAT IS THE FORM I WANT TO ASK BEFORE CLOSE.

Wednesday, January 9th 2013, 12:05pm

Author: fomaxrge

msgbox before close form

Hi again and happy new year! I need your help please.. I use this code to make a msgbox ask me if i want to quit. Jabaco Source 1 2 3 4 5 'in my Form... Public Sub Form_Unload(cancel As Integer) If MsgBox ("Quit?", vbCritical Or vbOKCancel,"Title") = 2 Then Exit Sub Me.Parent.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE) End Sub and Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 Public Form1 As New laoding_form 'in Module1... Public Sub main(ByJava args() As String) Dim myArgs() As String my...

Monday, December 17th 2012, 5:12pm

Author: fomaxrge

happy holidays

happy holidays from me too!!!

WoltLab Burning Board