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 bkrike 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: 112055
  • Content: Threads
  • Order by date
  1. 112055

    selected record does not stick on Listx SSDBGrid

    Hello, I have a Listx SSDBGrid. When I selected a record..... Sub Listx_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) If Button <> 2 Then Exit Sub cmdAction_Click End Sub Inside cmdAction_Click there is a Case statement to tell it what to do. Here is...
  2. 112055

    problem deleting from Listx SSDBGrid

    hello, I have this Delete function that works well with deleting any items in 3 of my 4 Listx SSDBGrid. Listx(0) SSDBGrid <~~ no problem deleting Listx(1) SSDBGrid <~~ no problem deleting Listx(2) SSDBGrid <~~ when I delete an item off the DataGrid I got an error message," Run-tme error...
  3. 112055

    problem displaying data in grids.

    Hello, I have a form that contains 4 tabs(tabSetup SStab). Inside each tab contains a List SSDBGrid. The arrangement is Tab 0, Tab 1, Tab 2, Tab 3. For some reason, everytime when I run the Application, I open this 'Setup.frm', the Tab 0 page's datagrid looks like it does not contain any...
  4. 112055

    Run-time error '3426' this action was cancelled by an associated objec

    Hi, This form is to allow customer to add customer name, ID, password and other previleges. But when I go do a Delete, I get a run time error 3426 - this action was cancelled by an associated object. It points to Datax(tx).Recordset.MoveNext I have out a MsgBox before and after this line to...
  5. 112055

    Button diappear when clicked away

    hello, I have 5 tab pages ( A, B, C, D, E). I created a Button 'Menu' on the first tab page 'A'. When I run the application, the Button 'Menu' shows up properly. But as soon as I clicked on other part of tab page 'A', i.e. other SSpanel, SSDBGrid, txtboxes etc., the Button 'Menu' quickly...
  6. 112055

    controls have no upgrade keys??

    Hello, convert VB 3 to VB 6 I found a copy of the VB 5 and opening the project going through VB 5 first seems to ease some of the errors when directly opening the project directly from VB 6. But I still have this 'Custom Control Upgrade' message box saying...
  7. 112055

    Identify each VBX and its replacement OCX

    Again, conversion from VB 3 to VB 6. Can anyone tell me what way or method or tools or how to identity *.VBX controls to *.OCX controls ? thanks again, Ann
  8. 112055

    Hello, Continue on the conversi

    Hello, Continue on the conversion from VB3 to VB6. Thank you Robert for your help. Now after I opened up the start form, I got a message saying, 'Errors during load. Refer to ‘C:\MyVBProject\Login.log’ for details. And when I go look at the log file, it says, 'Line 21: Class SSPanel of...
  9. 112055

    Must have Startup form or SubMain()??

    Hello, I am converting VB3 application to VB6. When I tried to open the application it says &quot;Must have Startup form or subMain()&quot;. Can anyone tell me what or how to correct this? I am learning VB as I go, I do not mind if you tell me the detail way. many thanks, Ann
  10. 112055

    Need Help to Fix controls on F4

    Hello, On the progress user interface, ==== Internal Use ============ ..<Add A New Customer>........ ..<Modify Existing Customer>.. ..<Display A Customer>........ ..<Daily Account Report>...... ..<View All Customers>........ ..<Exit> ============================== Enter data or press F4...
  11. 112055

    money format

    hello, In the progress report Monthly.p I format the money amount like this .........format &quot;>>9.99&quot; but the report shows up with the money amount with commas intead of decimal place, a period. Example: Daiwa Bank 70,00 12,00 0,00 0,00 0,00 0,00 5,00 it...
  12. 112055

    send files or reports out through emails

    Hello, I am new to Progress. I want to send the Monthly.p out through email by having the user type in the email address into the prompt field. Can anyone give me some idea how I can accomplish that? DEF button btn-rpt Label &quot;Reports&quot;. on choose of btn-rpt do: run Monthly.p...
  13. 112055

    Hello, I have a browser problem

    Hello, I have a browser problem. An XML file with data is called, on Netscape the file showed up no problem but when it goes through IE, I got a javascript error that keep pointing to the following code.. Error: 'getTitle().getLiens().0' is null or not an object...
  14. 112055

    Hi, In my jsp page, I have de

    Hi, In my jsp page, I have declared browser as follow, <% String browser = Sys.stripNull(request.getParameter(&quot;browser&quot;)); if(!browser.equals(&quot;&quot;)) browser += &quot; &quot; + Sys.stripNull(request.getParameter(&quot;version&quot;)); %> and follow that, I put in the...
  15. 112055

    Hello, I want to format date to

    Hello, I want to format date to 'MM/DD/YYYY', is there a way to automatically fill in leading zero for single digit date if user enter 1/2/03 to 01/02/2003.. ? Thanks for your help. vi
  16. 112055

    Printing String array

    Hello, I have a bunch of documents saved in a batch, laterwards I press print batch, then it supposedly print each of the documents as saved in the batch, but as of right now, only the first document print, the rest of it doesn't, can anyone tell me if I miss something in my code? many many...
  17. 112055

    Error ' A number is required here'??

    I am saving a bunch of reports which were originally created on Crystal 6.0, now saving it in Crystal 9.0 This report I am trying to save in Crystal 9.0 has an error message saying ' a number is required here' , what to do? many thanks
  18. 112055

    Incompatible type for declaration.

    Hello, I am learning JSP as I go.... Can anyone tell me how to set it up so that I use aUser to fetch stuff inside BBUser Many, many thanks, Ngai ---------------------------------------------------------------------------------- <% HttpSession mySession = pageContext.getSession()...
  19. 112055

    how to handle date

    Hello, I know it's wrong to check for !=null, but can anyone tell me the correct to handle this error. The method getDaysToExpiration() returns an int here I have ... String tempDate = &quot;&quot;; if(aUser.getDaysToExpiration() !=null) tempDate = aUser.getDaysToExpiration().trim()...
  20. 112055

    more than one order by clause

    Hello, Inside the Show SQL Query, I want to include more than one order by clause. I want to have ORDER BY F.BOOK_ID ASC, L.PURCHASE_NUMBER ASC, D.ORDER_NUMBER ASC but somehow, everytime after I saved the Crystal Report(6.0), reopen the rpt , the...

Part and Inventory Search

Back
Top