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 SkipVought 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: *

  1. rajesha24

    two While loops

    Hi Skip Thank you now everything works perfectly
  2. rajesha24

    two While loops

    I did not declare at all
  3. rajesha24

    two While loops

    Input #1 55236681 55242148 55242256 Input #2 14 13 09 In Input #2 after the value 13 at 20,12 in session, I should have a value of 09 in session @ 20,12, but 0 is neglected and only 9 is selected
  4. rajesha24

    two While loops

    Hi Skip If input starts from 0 (zero) i,e if input is 09 the 0 is neglected and only 9 is copied. I want 09 to be put at 20,12 in session but instead only 9 appears.
  5. rajesha24

    two While loops

    Hi It works just added a blank row at the last for two input files Below is the code close Open "C:\Users\bzxllh\Desktop\New.txt" For Input As #1 Open "C:\Users\bzxllh\Desktop\Part.txt" For Input As #2 'Open "C:\Efiles\Delete\Out Delete.txt" For Output As #2 Input #1, Pa...
  6. rajesha24

    two While loops

    Hi Skip the loop happens two times I want it to happen only once Input #1 55236681 55242148 55242256 Input #2 14 13 12 from the Input #1 the part number 55236681 should get the value from Input #2 i,e 14, 13, 12 only once, but the part number 55236681 is getting the value from Input #2...
  7. rajesha24

    two While loops

    Hi Skip It works but the last row in both the input is not getting recognised , I have 3 rows in both inputs but only 2 rows are getting looped
  8. rajesha24

    two While loops

    ok its working but the problem is close Open "C:\Users\bzxllh\Desktop\New.txt" For Input As #1 Open "C:\Users\bzxllh\Desktop\Part.txt" For Input As #2 'Open "C:\Efiles\Delete\Out Delete.txt" For Output As #2 Input #1, Pa Input #2, En While EOF(1) = 0 While EOF(2) = 0...
  9. rajesha24

    two While loops

    Hi skip do you have any program that is using two While loops just for reference purpose please post it
  10. rajesha24

    two While loops

    Hi Yes I manipulated step by step, since it while within a while loop so I am stuck and I am not that good in programming concepts can you tell me how to overcome that error INPUT PAST END OF LINE NUMBER 66 and it does not loop the second while
  11. rajesha24

    two While loops

    Hi Skip I tried it with simple program but I get error INPUT PAST END OF LINE NUMBER 66 and it does not loop the second while -------------------------------------------------------------------------------- ' This macro was created by the Macro Recorder. ' Session Document: "SESSION1.EDP" '...
  12. rajesha24

    two While loops

    there is no loop happening at all just I get a message Macro Done
  13. rajesha24

    two While loops

    I HAVE DONE LIKE THIS BUT DOES NOT WORK Sub Main() '-------------------------------------------------------------------------------- ' Get the main system object Dim Sessions As Object Dim System As Object Set System = CreateObject("EXTRA.System") ' Gets the system object If (System is...
  14. rajesha24

    two While loops

    Hi Skip I am not able to interpret that in my code can you please do it for me and paste the code
  15. rajesha24

    two While loops

    I have the below code where there is two While statements the while statement for Input 2 gets looped and then macro gets done, without looping the the while statement for input 1 please advice in this '-------------------------------------------------------------------------------- ' This macro...
  16. rajesha24

    I want to copy multiple cells from excel and paste it to attachmate extra

    Hi Skip it works thank you very much, you saved lot of time for me [2thumbsup]
  17. rajesha24

    I want to copy multiple cells from excel and paste it to attachmate extra

    I am not good in programing [sad] now for the below code can you tell me how can I get the data from column A and Column B i,e A1B1 and loop it till the blank row, In the below code I am able to do only for column A ' Global variable declarations Global g_HostSettleTime% Global g_szPassword$...
  18. rajesha24

    I want to copy multiple cells from excel and paste it to attachmate extra

    the above code actually gets the data from Excel and then puts it into the Extra, thats why I say copy
  19. rajesha24

    I want to copy multiple cells from excel and paste it to attachmate extra

    so here is the code that I have written but it copies only column A but column B is not copied, content of column B should be pasted at 12, 10 in Extra ' Global variable declarations Global g_HostSettleTime% Global g_szPassword$ Sub Main()...
  20. rajesha24

    I want to copy multiple cells from excel and paste it to attachmate extra

    Hello Skip I am not good in programming I have not written any code for this I just need a code that will copy Cell A1 from excel and paste it to extra at 3, 22 and cell B1 from Excel and paste it to Extra at 12, 10. ( Cell A1 contains the part number and cell B1 contains the date for that...

Part and Inventory Search

Back
Top