Click or drag to resize

BasicNoUIObjSetMacroStale Method

Set the macro/module cached source as stale. This removes the cached source from consideration forcing the source code to be read again.

Namespace: WinWrap.Basic.Server
Assembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntax
public void SetMacroStale(
	string fileName
)

Parameters

fileName  String
Set this macro/module cached source as stale. If this is a null string, set stale for all cached source.

Implements

IBasicNoUISetMacroStale(String)
Remarks
This removes the cached source from consideration forcing the source code to be read again.
Example
Remove TEST.BAS from the cache:
basicIdeCtl1.SetMacroStale("TEST.BAS");
See Also