Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: halx
  • Order by date
  1. halx

    Chart component

    Hello, Thanks for your message. Cewolf is actually a component that is based on JFreeChart. Cewolf is a component that can be used in JSP pages, while JFreeChart can be used in Java applications. Alex
  2. halx

    I need begin with jsp

    Hello, Here is a good link if you are a beginner in JSP: http://www.jsptut.com/ If you understand French and want to install Tomcat for Windows, try this link: http://www.apachefrance.com/Articles/5/imprime/ Alex
  3. halx

    Chart component

    Hello, I am looking for a Java component that makes it possible to draw charts (pie, bar, gantt, line ... charts) and include them in JSP pages. So far I have found "Cewolf" http://cewolf.sourceforge.net/ Do you know any better component or just any other component? Thanks a lot, Alex
  4. halx

    Help to optimize a (simple) function

    Hello, Greg: my users choose the input value of the function from a predefined list and choose the output value (whatever string they want). Example: they can decide to associate "dog" with "12212", or "computer" with "dfsfdsafsdaf" I'm gonna have a...
  5. halx

    Help to optimize a (simple) function

    Hello, Could someone help me to optimize a simple function (well, the function's logic is simple, but the optimization might not be simple to find) Suppose you have - a table "tblMyTable", with a field called "field1". - a function to apply to this field. That is, I want to...
  6. halx

    How to save a label's caption that is dynamically assigned ?

    Hello, Thanks a lot ! I have done it and it works perfectly (though I hoped there was something simpler) Alex
  7. halx

    How to save a label's caption that is dynamically assigned ?

    Hello, I have a form that contains among other things a label whose caption changes according to what the user does. (ie: when it is necessary, I update the label's caption with the command: me.lblMyLabel.caption = "qwerty") When I close the form and open it again, the label is...
  8. halx

    Tab control: how to make a page not clickable

    Hi, Thanks a lot for your ideas ! And please allow me to re-use this sentence: "Ah...user training...the replacement for bulletproof coding!" :o) Alex
  9. halx

    How to make a tab (of a tab control) not clickable ?

    Hello, I have a tab control in a form, with several pages (tabs). Is it possible to make a tab not clickable (and grey)? "pageName.enable = FALSE" still allows the user to click on the tab (but the commands inside are disabled) Thanks Alex
  10. halx

    Tab control: how to make a page not clickable

    Hello, I have a tab control in a form, with several pages (tabs). Is it possible to make a tab not clickable (and grey)? "pageName.enable = FALSE" still allows the user to click on the tab (but the commands inside are disabled) Thanks Alex
  11. halx

    Form, subform, transaction

    Hello, Yes, I would like to do that (ie: to save or cancel ALL the changes, with a Save and a Cancel button). I need to use BeginTrans, CommitTrans and RollBackTrans, but I don't know the implementation. Do you know where on the web I could find an example of a form with a subform using...
  12. halx

    Form, subform, transaction

    Hello, Thanks for your post, but unfortunately, things are not that simple. What I want to do is to save the data in the form and the data in the subform AT THE SAME TIME. The subform is in data sheet view, so when you move from one record to another inside that form, Access saves...
  13. halx

    Form, subform, transaction

    Hello, I have found a thread about using transactions to save data inserted in a form that contains a subform but I could not make the code work. So here is my problem: I have a form "frmTest" bound to the table "tblTests" and a subform "sfrmSteps" bound to the...
  14. halx

    how do i find the last record for a form

    Hello, Could someone post the code for what Craig0201 wrote in the previous post? Thanks, Alex
  15. halx

    "AS" keyword, to rename a table

    Yes, I agree it is easy to save a query and use it in another query, just as if it were a table. But for my project, by doing this, I come out with a lot of stored subqueries (that I use only once). That is why I prefer writing "big" queries. What do you think ? Does anybody have tips...
  16. halx

    "AS" keyword, to rename a table

    Hello ! I have written this query in the SQL view part of Access 2000's query editor: SELECT IDTester, toBeTested FROM tblTests INNER JOIN tblScenariosAndDescriptions ON (tblTests.IDFunction = tblScenariosAndDescriptions.IDFunction) and it perfectly works (IDTester is a field from tblTests and...
  17. halx

    List box: how to know it is empty ?

    Hello ! I have a list box whose rowsource is defined by a query. Something like: Me.lstMyListBox.rowsource = "SELECT ... FROM ... WHERE" Is there a way to know whether my list box is empty (ie: whether the query "SELECT ... FROM ... WHERE" is empty ?) Thanks Alex
  18. halx

    merging two reports

    Hello, Does anybody know how to merge two reports ? That is: I have two reports and I would like to put them into one, just one after the other. Thanks Alex
  19. halx

    parameters in query, when the parameter is a table name

    Here it is: ------------------------------------------------- Dim testCycleParameters(4) Public Sub SetTestCycleParameters(ByVal InputVal, ByVal ParamID) testCycleParameters(ParamID) = InputVal End Sub Public Function GetTestCycleParameters(ByVal ParamID) GetTestCycleParameters =...

Part and Inventory Search

Back
Top