Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
A

Account Removal

@Account Removal
About
Posts
8
Topics
5
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • A world leading scan and imaging application
    A Account Removal

    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

    Work Issues database tools question career

  • A Console window for Trace.WriteLine
    A Account Removal

    Working on the subject I found a even simpler way to create a console window from within a class module. It requires two p/invoke functions from kernel32 and than Console.WriteLine () will do! It goes like this... bool b = AllocConsole (); Console.WriteLine ("This..."); Console.WriteLine ("...That"); bool b = FreeConsole (); Aad Aad Slingerland Zevenaar The Netherlands

    C# tutorial debugging question

  • A Console window for Trace.WriteLine
    A Account Removal

    Hello Heath, I give this a try first thing in the morning. Be back... Tx Aad Aad Slingerland Zevenaar The Netherlands

    C# tutorial debugging question

  • A Console window for Trace.WriteLine
    A Account Removal

    Hi, I should like to write trace lines (using Trace.WriteLine or even Console.WriteLine) to a console window, but this time from a Class module. The class module does not create a Console (aka command line)window, so Console.WriteLine does not work. Neither could I find an example of specifying a (or creating a) console window for this kind of output. Anybody Any Idea how to do this? Tx Aad Aad Slingerland Zevenaar The Netherlands

    C# tutorial debugging question

  • Permissions for GACUTIL
    A Account Removal

    Hello I'm trying to deplay a .NET assembly to workstations. This .NET assembly should be registered with regasm.exe (for Com Interop) and placed in the GAC. Using gacutil works fine as a developer but whenh users run the command file (containing various copy, regasm and gacutil commands) the permission to install is not enough. Example: gacutil -i VspJKofaxValidationSupport.dll Microsoft (R) .NET Global Assembly Cache Utility. Version 1.1.4322.573 Copyright (C) Microsoft Corporation 1998-2002. All rights reserved. Failure adding assembly to the cache: Access is denied. What could i do without digging into a completely different way of deploying? Project time is running out:doh: Aad Slingerland Zevenaar The Netherlands

    .NET (Core and Framework) com csharp dotnet tools tutorial

  • DCOM, load balancing and server cluster
    A Account Removal

    Hi, I have developed several VB6 components that 'run' on a server on behalf of client application requests. So far so good... Now we move to a Win2k cluster in order to enhance availability. What _can_ i do or _should_ i do to make my own server components working in a fail over scenario? Just cannot find anything usefull at MSDN. Tia Aad Slingerland Aad Slingerland Zevenaar The Netherlands

    Visual Basic sysadmin question

  • Which editor?
    A Account Removal

    Correction: >Any ideas where I should lool? Any ideas where I should looK ? Aad Slingerland Zevenaar The Netherlands

    IT & Infrastructure announcement question

  • Which editor?
    A Account Removal

    Hi, I'm about to release my old TSE 32 (windwows 32 bit version of TSE) into the void, since it's time (I think) to get something more modern. Did had a look at Textpad and Credit, but no go yet a 'good' feeling. Any ideas where I should lool? What do you guys use as your favorite editor? TIA Aad Aad Slingerland Zevenaar The Netherlands

    IT & Infrastructure announcement question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups