dbTalk Databases Forums  

NoName

comp.databases.paradox comp.databases.paradox


Discuss NoName in the comp.databases.paradox forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
Craig
 
Posts: n/a

Default NoName - 09-24-2007 , 01:29 AM






I have a peculiar thing happen recently (with my software) with more
frequency lately and can't figure it out.

I use a lot of pop-up menus and (in the past on rare occasions) and now more
frequently in one of my apps.

I get "NoName" as my choice. It is not a choice in the pop-up list.
This has happened in different apps where pop-up menus are used.
It has happened in Runtime as well as Full version.
I am using P10 (I am not sure which update I am using at work).
All variables are declared properly.
Has anyone seen this before?

Thanks,
Craig

A code snippet is below:
menuSetLimit(n+50) ;// there are less than 50 items, probably around 30
pop.addStaticText("Infusion Medications")
pop.addseparator()
pop.addText("Cancel")
For y from 1 to n
TC.movetoRecord(y)
pop.addtext(TC.DrugName)
If m =8 then
pop.addbreak()
pop.addText(" ")
pop.addseparator()
m = 1
ENDIF
m = m+1
ENDFOR

sAns = pop.show(3000,1000)






Reply With Quote
  #2  
Old   
Jim Moseley
 
Posts: n/a

Default Re: NoName - 09-24-2007 , 09:47 AM







Craig,

Check to see if the tc.movetorecord(n) is successful, as in:

if not tc.movetorecord(n) then
quitloop
endif

HTH,
Jim Moseley

Reply With Quote
  #3  
Old   
Bertil Isberg
 
Posts: n/a

Default Re: NoName - 09-24-2007 , 11:20 AM



Craig

I have seen this occassionally. Here are my notes on this:

http://hem.bredband.net/bertilisberg...issues.htm#208


--
Bertil Isberg - CTECH
Paradox buglist:
online: http://hem.bredband.net/bertilisberg/

"Craig" <craig.futterman (AT) nospam (DOT) comcast.net> skrev i meddelandet
news:46f74b1a (AT) pnews (DOT) thedbcommunity.com...
Quote:
I have a peculiar thing happen recently (with my software) with more
frequency lately and can't figure it out.

I use a lot of pop-up menus and (in the past on rare occasions) and now
more frequently in one of my apps.

I get "NoName" as my choice. It is not a choice in the pop-up list.
This has happened in different apps where pop-up menus are used.
It has happened in Runtime as well as Full version.
I am using P10 (I am not sure which update I am using at work).
All variables are declared properly.
Has anyone seen this before?

Thanks,
Craig

A code snippet is below:
menuSetLimit(n+50) ;// there are less than 50 items, probably around 30
pop.addStaticText("Infusion Medications")
pop.addseparator()
pop.addText("Cancel")
For y from 1 to n
TC.movetoRecord(y)
pop.addtext(TC.DrugName)
If m =8 then
pop.addbreak()
pop.addText(" ")
pop.addseparator()
m = 1
ENDIF
m = m+1
ENDFOR

sAns = pop.show(3000,1000)








Reply With Quote
  #4  
Old   
Craig
 
Posts: n/a

Default Re: NoName - 09-24-2007 , 11:34 AM



Bertil,
Thanks for your response. It is a relief ( I think) to know it wasn't just
my programming.
In your notes, you stated :
"Combination of addStaticText() and addSeparator() seems to be involved.
NoName being returned has also been reported for P10 and P11 SP1."

I do use addStaticText() and addSeparator() . I will try to remove that and
see if it makes a difference. In the second line did you mean SP1 for both
P10 and P11 or all of P10 and SP1 for P11?

Thanks for your time.

Craig



"Bertil Isberg" <ctech (AT) corel (DOT) ca> wrote

Quote:
Craig

I have seen this occassionally. Here are my notes on this:

http://hem.bredband.net/bertilisberg...issues.htm#208


--
Bertil Isberg - CTECH
Paradox buglist:
online: http://hem.bredband.net/bertilisberg/

"Craig" <craig.futterman (AT) nospam (DOT) comcast.net> skrev i meddelandet
news:46f74b1a (AT) pnews (DOT) thedbcommunity.com...
I have a peculiar thing happen recently (with my software) with more
frequency lately and can't figure it out.

I use a lot of pop-up menus and (in the past on rare occasions) and now
more frequently in one of my apps.

I get "NoName" as my choice. It is not a choice in the pop-up list.
This has happened in different apps where pop-up menus are used.
It has happened in Runtime as well as Full version.
I am using P10 (I am not sure which update I am using at work).
All variables are declared properly.
Has anyone seen this before?

Thanks,
Craig

A code snippet is below:
menuSetLimit(n+50) ;// there are less than 50 items, probably around 30
pop.addStaticText("Infusion Medications")
pop.addseparator()
pop.addText("Cancel")
For y from 1 to n
TC.movetoRecord(y)
pop.addtext(TC.DrugName)
If m =8 then
pop.addbreak()
pop.addText(" ")
pop.addseparator()
m = 1
ENDIF
m = m+1
ENDFOR

sAns = pop.show(3000,1000)










Reply With Quote
  #5  
Old   
Bertil Isberg
 
Posts: n/a

Default Re: NoName - 09-24-2007 , 02:22 PM



I don't know which SP of P10 that was used, but as it has been around a long
time and exist in P11 SP1, I'm pretty sure it exists in all SPs of P10.

--
Bertil Isberg - CTECH
Paradox buglist:
online: http://hem.bredband.net/bertilisberg/

"Craig" <craig.futterman (AT) nospam (DOT) comcast.net> skrev i meddelandet
news:46f7d8e9$1 (AT) pnews (DOT) thedbcommunity.com...
Quote:
Bertil,
Thanks for your response. It is a relief ( I think) to know it wasn't just
my programming.
In your notes, you stated :
"Combination of addStaticText() and addSeparator() seems to be involved.
NoName being returned has also been reported for P10 and P11 SP1."

I do use addStaticText() and addSeparator() . I will try to remove that
and see if it makes a difference. In the second line did you mean SP1 for
both P10 and P11 or all of P10 and SP1 for P11?

Thanks for your time.

Craig



"Bertil Isberg" <ctech (AT) corel (DOT) ca> wrote in message
news:46f7d59a (AT) pnews (DOT) thedbcommunity.com...
Craig

I have seen this occassionally. Here are my notes on this:

http://hem.bredband.net/bertilisberg...issues.htm#208


--
Bertil Isberg - CTECH
Paradox buglist:
online: http://hem.bredband.net/bertilisberg/

"Craig" <craig.futterman (AT) nospam (DOT) comcast.net> skrev i meddelandet
news:46f74b1a (AT) pnews (DOT) thedbcommunity.com...
I have a peculiar thing happen recently (with my software) with more
frequency lately and can't figure it out.

I use a lot of pop-up menus and (in the past on rare occasions) and now
more frequently in one of my apps.

I get "NoName" as my choice. It is not a choice in the pop-up list.
This has happened in different apps where pop-up menus are used.
It has happened in Runtime as well as Full version.
I am using P10 (I am not sure which update I am using at work).
All variables are declared properly.
Has anyone seen this before?

Thanks,
Craig

A code snippet is below:
menuSetLimit(n+50) ;// there are less than 50 items, probably around 30
pop.addStaticText("Infusion Medications")
pop.addseparator()
pop.addText("Cancel")
For y from 1 to n
TC.movetoRecord(y)
pop.addtext(TC.DrugName)
If m =8 then
pop.addbreak()
pop.addText(" ")
pop.addseparator()
m = 1
ENDIF
m = m+1
ENDFOR

sAns = pop.show(3000,1000)












Reply With Quote
  #6  
Old   
Craig
 
Posts: n/a

Default Re: NoName - 09-24-2007 , 02:40 PM



Thanks,

Craig
"Bertil Isberg" <ctech (AT) corel (DOT) ca> wrote

Quote:
I don't know which SP of P10 that was used, but as it has been around a
long time and exist in P11 SP1, I'm pretty sure it exists in all SPs of
P10.

--
Bertil Isberg - CTECH
Paradox buglist:
online: http://hem.bredband.net/bertilisberg/

"Craig" <craig.futterman (AT) nospam (DOT) comcast.net> skrev i meddelandet
news:46f7d8e9$1 (AT) pnews (DOT) thedbcommunity.com...
Bertil,
Thanks for your response. It is a relief ( I think) to know it wasn't
just my programming.
In your notes, you stated :
"Combination of addStaticText() and addSeparator() seems to be involved.
NoName being returned has also been reported for P10 and P11 SP1."

I do use addStaticText() and addSeparator() . I will try to remove that
and see if it makes a difference. In the second line did you mean SP1 for
both P10 and P11 or all of P10 and SP1 for P11?

Thanks for your time.

Craig



"Bertil Isberg" <ctech (AT) corel (DOT) ca> wrote in message
news:46f7d59a (AT) pnews (DOT) thedbcommunity.com...
Craig

I have seen this occassionally. Here are my notes on this:

http://hem.bredband.net/bertilisberg...issues.htm#208


--
Bertil Isberg - CTECH
Paradox buglist:
online: http://hem.bredband.net/bertilisberg/

"Craig" <craig.futterman (AT) nospam (DOT) comcast.net> skrev i meddelandet
news:46f74b1a (AT) pnews (DOT) thedbcommunity.com...
I have a peculiar thing happen recently (with my software) with more
frequency lately and can't figure it out.

I use a lot of pop-up menus and (in the past on rare occasions) and now
more frequently in one of my apps.

I get "NoName" as my choice. It is not a choice in the pop-up list.
This has happened in different apps where pop-up menus are used.
It has happened in Runtime as well as Full version.
I am using P10 (I am not sure which update I am using at work).
All variables are declared properly.
Has anyone seen this before?

Thanks,
Craig

A code snippet is below:
menuSetLimit(n+50) ;// there are less than 50 items, probably around
30
pop.addStaticText("Infusion Medications")
pop.addseparator()
pop.addText("Cancel")
For y from 1 to n
TC.movetoRecord(y)
pop.addtext(TC.DrugName)
If m =8 then
pop.addbreak()
pop.addText(" ")
pop.addseparator()
m = 1
ENDIF
m = m+1
ENDFOR

sAns = pop.show(3000,1000)














Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.