Forum: [VBP] General Discussion
06-26-2007, 03:49 PM
|
Replies: 4
Views: 11,680
|
Forum: [VBP] Suggestions
03-19-2007, 04:31 PM
|
Replies: 1
Views: 19,008
Number steps
It would aid interpreting the log and error reports if steps were numbered as well as named.
In large builds it is hard to avoid reusing step names and that can lead to confusion in the log where...
|
Forum: [VBP] Third Party Tools
02-13-2007, 03:42 PM
|
Replies: 11
Views: 17,680
For historical reasons we are using the devenv...
For historical reasons we are using the devenv command line (rather than the built in VBP step) to build on a dual core system. We had trouble trying to get VCBuild working when we first installed VS...
|
Forum: [VBP] Third Party Tools
02-08-2007, 02:55 PM
|
Replies: 2
Views: 10,736
|
Forum: [VBP] General Discussion
10-17-2006, 06:12 PM
|
Replies: 5
Views: 11,870
We see a similar issue to this with one...
We see a similar issue to this with one particular build where it often fails to send a build completion email.
I've not had time to look into this yet, but it is on my todo list. My current...
|
Forum: [VBP] General Discussion
08-21-2006, 06:26 PM
|
Replies: 4
Views: 12,678
|
Forum: [VBP] Third Party Tools
07-20-2006, 04:56 PM
|
Replies: 2
Views: 11,411
Does your build process build a series of...
Does your build process build a series of installers? We have been caught in the past because the Wise InstallMaster installer compiler we currently use seems to kick off a compile then return. It's...
|
Forum: [VBP] General Discussion
06-01-2006, 03:35 PM
|
Replies: 3
Views: 10,339
|
Forum: [VBP] General Discussion
03-12-2006, 02:57 PM
|
Replies: 2
Views: 10,694
|
Forum: [VBP] General Discussion
03-09-2006, 05:42 PM
|
Replies: 2
Views: 10,694
|
Forum: [VBP] General Discussion
03-02-2006, 06:34 PM
|
Replies: 1
Views: 10,599
pasting file text into an email body
I'd like to include the contents of a text file into the body of an email (not as an attachment).
Is there a simple way to do this without writing a chunk of script to read the text out of the...
|
Forum: [VBP] General Discussion
01-24-2006, 02:46 PM
|
Replies: 3
Views: 11,355
|
Forum: [VBP] General Discussion
01-23-2006, 06:27 PM
|
Replies: 3
Views: 11,355
Odd JScript behaviour
If I use
["/samplestring/".replace (/[[\\\/]]$/, "")]
as the Value: for a Set Macro step the macro is set to
/samplestring/
and is also shown in the mouseover tool tip with shift...
|
Forum: [VBP] General Discussion
12-05-2005, 04:23 PM
|
Replies: 1
Views: 11,229
Quoting problem or bug?
I'm using a JScript regex replace to provide a value in a step as:
['%str%'.replace (/L"([[^"]]+?)"/, '$1')]
which fails to match my test string L"wanted text". However:
['%str%'.replace...
|
Forum: [VBP] General Discussion
12-01-2005, 04:05 PM
|
Replies: 2
Views: 10,977
|
Forum: [VBP] General Discussion
09-01-2005, 03:32 PM
|
Replies: 7
Views: 13,735
|
Forum: [VBP] Suggestions
08-31-2005, 06:39 PM
|
Replies: 1
Views: 14,141
Find should search the action text for steps
To allow all the steps of a particular type to be found, Find should search the action attribute text as well as the currently searched text.
For example, to find all the places email is sent from a...
|
Forum: [VBP] General Discussion
08-25-2005, 04:06 PM
|
Replies: 2
Views: 12,832
|
Forum: [VBP] General Discussion
08-24-2005, 11:10 PM
|
Replies: 2
Views: 12,832
VBP Initialization failure
VBP is bring up a dialog containing the text "Initialization of Visual Build Pro builder component failed: No such interface supported" when any project is run.
This seems to have started...
|
Forum: [VBP] General Discussion
08-09-2005, 03:31 PM
|
Replies: 4
Views: 11,456
|
Forum: [VBP] General Discussion
06-08-2005, 04:08 PM
|
Replies: 1
Views: 10,588
|
Forum: [VBP] General Discussion
03-23-2005, 11:48 PM
|
Replies: 3
Views: 12,872
I use JScript all the time.
// Add a...
I use JScript all the time.
// Add a temporary macro
Application.Macros (0).Add ("EmailSuccess", success);
// Return the contents of a macro as a string
function GetStr (macroName)
{
var...
|
Forum: [VBP] General Discussion
03-22-2005, 03:56 PM
|
Replies: 4
Views: 15,539
|
Forum: [VBP] General Discussion
03-21-2005, 06:50 PM
|
Replies: 4
Views: 15,539
|
Forum: [VBP] General Discussion
03-21-2005, 03:52 PM
|
Replies: 4
Views: 15,539
Early exit techniques
I currently throw in JScript to initiate an early exit from a build. This results in the Failure Steps being executed. If I set a macro in the throw process I can test it in the Failure Steps...
|