F
FA
I have an issue that i am currently working on and may be someone
have done something like this in the past or may be you how to handle
such situation.
I have a form called frmSystem which has two textboxes in my .mdb.
txtSYS_NME, and txtSYS_CODE . The data for txtSYS_NME is coming from
sql server DB which takes the data from excel sheet on a daily basis.
txtSYS_NME holds a string. sample data for it may be "People Soft
Managment Tool"
If thats the data in the txtSYS_NME i want to autopopulate txtSYS_CODE
on a Form Load so that it takes the first substring of each word from
txtSYS_NME and populate the textbox txtSYS_CODE. so for instance if the
txtSYS_NME.Value = " People Soft Managment Tool" Then i want to
autopopulate the textbox txtSYS_CODE with PSMT.
have done something like this in the past or may be you how to handle
such situation.
I have a form called frmSystem which has two textboxes in my .mdb.
txtSYS_NME, and txtSYS_CODE . The data for txtSYS_NME is coming from
sql server DB which takes the data from excel sheet on a daily basis.
txtSYS_NME holds a string. sample data for it may be "People Soft
Managment Tool"
If thats the data in the txtSYS_NME i want to autopopulate txtSYS_CODE
on a Form Load so that it takes the first substring of each word from
txtSYS_NME and populate the textbox txtSYS_CODE. so for instance if the
txtSYS_NME.Value = " People Soft Managment Tool" Then i want to
autopopulate the textbox txtSYS_CODE with PSMT.