Click here to Skip to main content
15,900,816 members
Home / Discussions / Work Issues
   

Work Issues

 
Questiontough career choice Pin
mr_potato_head11-May-07 22:21
mr_potato_head11-May-07 22:21 
AnswerRe: tough career choice Pin
Colin Angus Mackay12-May-07 0:03
Colin Angus Mackay12-May-07 0:03 
GeneralRe: tough career choice Pin
mr_potato_head12-May-07 0:42
mr_potato_head12-May-07 0:42 
GeneralRe: tough career choice Pin
Vasudevan Deepak Kumar2-Jul-07 21:53
Vasudevan Deepak Kumar2-Jul-07 21:53 
GeneralRe: tough career choice Pin
mr_potato_head14-May-07 21:39
mr_potato_head14-May-07 21:39 
GeneralRe: tough career choice Pin
Vasudevan Deepak Kumar2-Jul-07 21:54
Vasudevan Deepak Kumar2-Jul-07 21:54 
AnswerRe: tough career choice Pin
Diego F.7-Jun-07 21:57
Diego F.7-Jun-07 21:57 
NewsA world leading scan and imaging application Pin
Account Removal11-May-07 6:35
Account Removal11-May-07 6:35 
Once in a while I run into a situation that really surprises me. Being on a job to install and configure a world leading scan and imaging application I was surprised about the built-in scripting tool available. The built-in scripting language is a rather old fashioned Basic derivate known under the name Softbridge Basic Language (SBL).

I had no choice. I needed to do some scripting in the Validation process of this product and no other tools available. SBL indeed was the delighted way to go. Not that I’m afraid of a little old fashioned coding. I have had my share of Assembler and Cobol coding in the past. One of the simple things I hade to do is some character replacement in strings. A Replace statement please?

Not. Definitely not. So once again I had to write one of my own. If you ever happen to collide with this world leading scan and imaging application then I have at least some code for you. Here it is:


function replacestring (source as string, _
search as string, repl as string) as string
'
' One VB6 Replace replacement
'
dim index as integer ' index in source
dim position as integer ' instr position in source
dim result as string ' build result here
'
index = 1
result = ""
do
position = instr (index, source, search)
if position > 0 then
result = result & mid$ (source, index, position - index) & repl
index = position + len (search)
else
result = result & mid$ (source, index)
end if
loop while position > 0
'
replacestring = result
end function


Aad Slingerland
Zevenaar
The Netherlands

QuestionHow do i Restore updated Column in SQL Pin
Vimalsoft(Pty) Ltd9-May-07 3:17
professionalVimalsoft(Pty) Ltd9-May-07 3:17 
AnswerRe: How do i Restore updated Column in SQL Pin
Paul Conrad4-Nov-07 7:24
professionalPaul Conrad4-Nov-07 7:24 
QuestionFind mistakes in resume [modified] Pin
Alex Shapovalov7-May-07 20:35
professionalAlex Shapovalov7-May-07 20:35 
AnswerRe: Find mistakes in resume Pin
David Crow15-May-07 11:09
David Crow15-May-07 11:09 
GeneralRe: Find mistakes in resume Pin
Vasudevan Deepak Kumar2-Jul-07 21:55
Vasudevan Deepak Kumar2-Jul-07 21:55 
GeneralRe: Find mistakes in resume Pin
Scott Dorman6-Jul-07 3:25
professionalScott Dorman6-Jul-07 3:25 
QuestionSpecs Pin
Sk8tz6-May-07 23:47
professionalSk8tz6-May-07 23:47 
AnswerRe: Specs Pin
Colin Angus Mackay12-May-07 0:05
Colin Angus Mackay12-May-07 0:05 
GeneralRe: Specs Pin
Sk8tz13-May-07 20:00
professionalSk8tz13-May-07 20:00 
GeneralRe: Specs Pin
Colin Angus Mackay13-May-07 21:07
Colin Angus Mackay13-May-07 21:07 
QuestionGetting MS certification Pin
Blumen2-May-07 1:02
Blumen2-May-07 1:02 
AnswerRe: Getting MS certification Pin
Steve Maier3-May-07 7:04
professionalSteve Maier3-May-07 7:04 
GeneralRe: Getting MS certification Pin
Blumen3-May-07 22:53
Blumen3-May-07 22:53 
GeneralRe: Getting MS certification Pin
Francois Benadie8-May-07 13:11
Francois Benadie8-May-07 13:11 
GeneralRe: Getting MS certification Pin
Blumen9-May-07 1:55
Blumen9-May-07 1:55 
GeneralRe: Getting MS certification Pin
brianwelsch22-May-07 9:31
brianwelsch22-May-07 9:31 
GeneralRe: Getting MS certification Pin
code_wiz13-May-07 2:49
code_wiz13-May-07 2:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.