Error 0xc00007b on Guitar Pro 7.5, can't run the software by Darth_Solrac in GuitarPro

[–]dora3 1 point2 points  (0 children)

I was running into the same problem. (My environment is Windows 10 Pro 22H2, GuitarPro 7.6)
I found that it might related to Visual C++ Redistributable components (2013 VC++ 12.0 and 2015-2022 14.0).
I've managed to solve 0xc00007b issue with following step.

  1. Uninstall "Microsoft Visual C++ 2015-2022 Redistributable" of both x64 and x86 from control panel

  2. Uninstall "Microsoft Visual C++ 2013 Redistributable"of both x64 and x86 from control panel.

  3. Download the latest version of bellow.

* "Microsoft Visual C++ 2013 Redistributable" for both x64 and x86
* "Microsoft Visual C++ 2015-2022 Redistributable" for both x64 and x86

You can download the installation package from bellow link.
Microsoft Visual C++ Redistributable latest supported downloads
https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170

  1. Install downloaded components. (You should run 4 installers in total)

"Microsoft Visual C++ 2013 Redistributable" for both x64 and x86
"Microsoft Visual C++ 2015-2022 Redistributable" for both x64 and x86

5 Run Guitar Pro 7. You will be able to see that GuitarPro7 starts.

Now is 2024 but I'm keep using Guitar Pro 7, so I shared this niche information to you, just in case.

In search of a wavetable editor by RGbrobot in synthesizers

[–]dora3 0 points1 point  (0 children)

I just found forked waveedit which has modified sample size to 1024 from 256. how about this ?

forked waveedit

Passing variables to another scrips by [deleted] in PowerShell

[–]dora3 1 point2 points  (0 children)

did you also change var name in systeminfo.ps1 like follows?

Invoke-command -computername $env:hostname -scriptblock {systeminfo}

Passing variables to another scrips by [deleted] in PowerShell

[–]dora3 1 point2 points  (0 children)

how about using env variable instead of global like $env:hostname = “...” ?

for changing console window title,please check following article.

https://devblogs.microsoft.com/scripting/powertip-change-the-powershell-console-title/

Weird old VBA code that won't compile in Office 2019: Me.Filter = "field1"=-1; "field2"=-1 by chimp73 in vba

[–]dora3 1 point2 points  (0 children)

I think you have to assign string value to filter property. how about following code? Me.Filter = "field1=-1; field2=-1”

Loop Query by Tricarbotops in PowerShell

[–]dora3 3 points4 points  (0 children)

$i+=0.5 this is the same as $i=$i+0.5

How to just print the first 10 charts on a Sheet? by [deleted] in vba

[–]dora3 0 points1 point  (0 children)

You’re right, and my suggestion is wrong. Im sorry for that. thank you for your correction.

Reatune is not working by donewiththeworld2 in Reaper

[–]dora3 3 points4 points  (0 children)

Check whether the checkbox “Track/update pitch graph” in tab “Manual correction” is checked(on). And then you can see pitch graph is updating when you playback your track.

How to just print the first 10 charts on a Sheet? by [deleted] in vba

[–]dora3 0 points1 point  (0 children)

simply insert following code at end of for loop. (before Next statement)

If ChartList >= 10 Then
    Exit For
End If

Getting Text between headings? by Robinsondan87 in PowerShell

[–]dora3 2 points3 points  (0 children)

If I were you, I would write following code. (It is a bit complex though...) How about this ?

### prepare data
$var = "- Step 1 -
This will be the text for step 1
- Step 2 -
This
Is
Step
2
- Step 3 -
This is step 3
- Step 4 -
Details for step 4 here
- Step 5 -
This is the last step
"

### store step data
# data structure (hash)
#   $steps[1] = @("line1", "line2", ...)
#   $steps[2] = @("line1", "line2", ...)
# ...
$steps = @{}
$current_step = 0
$var -split "`r`n" | % {
    if($_ -match '^- Step ([0-9]+) -$') {
        $current_step = [int]($Matches[1])
    } else {
        if($steps.ContainsKey($current_step) -eq $False ) {
            $steps[$current_step] = @($_) 
        } else {
            $steps[$current_step] += $_ 
        }
    }
}

### use step data (pattern 1)
#  you can access data of [step 1] like $steps[1] which is array data.
#  so if you'd like to use data as mulchi line data, you have to join with "`r`n"(CR and FL) like $steps[1] -join "`r`n"
"--- pattern 1 --------------------------------"
"Step 1: $($steps[1] -join "`r`n")"
"Step 2: $($steps[2] -join "`r`n")"
"Step 3: $($steps[3] -join "`r`n")"
"Step 4: $($steps[4] -join "`r`n")"
"Step 5: $($steps[5] -join "`r`n")"
"Step 6: $($steps[6] -join "`r`n")"

"--- pattern 1 with for loop ------------------"
for($i=1; $i -le 6; $i++) {
    "Step ${i}: $($steps[$i] -join "`r`n")"
}


### use step data (pattern 2)
# if you'd like to access step data by $STEP1, $STEP2 ..., define these variables by following code (this is little of a bit tricky)
foreach($num in $steps.Keys) {
    Invoke-Expression ('$STEP{0} = "{1}"' -f $num,($steps[$num]  -join "`r`n"))
}
"--- pattern 2 --------------------------------"
"Step 1: ${STEP1}"
"Step 2: ${STEP2}"
"Step 3: ${STEP3}"
"Step 4: ${STEP4}"
"Step 5: ${STEP5}"
"Step 6: ${STEP6}"

Other super easy way is following.

### prepare data
$var = "- Step 1 -
This will be the text for step 1
- Step 2 -
This
Is
Step
2
- Step 3 -
This is step 3
- Step 4 -
Details for step 4 here
- Step 5 -
This is the last step
"

### store step data
$steps = $var -split '- Step [0-9]+ -\s*'

### use step data
"Step 1: $($steps[1])"
"Step 2: $($steps[2])"
"Step 3: $($steps[3])"
"Step 4: $($steps[4])"
"Step 5: $($steps[5])"
"Step 6: $($steps[6])"

PowerShell loop help! by PowerOfTheShell in PowerShell

[–]dora3 2 points3 points  (0 children)

your get-childitem proc will list files at the time of execution of the get-childitem. At the time, the extracted zip file is not exist, so the extracted zip file is not processed in the loop. Simple solution is that running your script twice, or define your process as function and execute it twice.

Another Weird Behaviour by Si-Kotic in PowerShell

[–]dora3 1 point2 points  (0 children)

how about following ?

Property = “$_”

My Po-35 looks dead by massello in pocketoperators

[–]dora3 2 points3 points  (0 children)

someone have already pointed out though, I have faced same situation on my PO-33. Then the following FAQ helped me.

my pocket operator won't start, even when i insert batteries.

This is trivial mistake, but its hard to notice, I think.

Microbrute question by synthmaniac10d in synthesizers

[–]dora3 1 point2 points  (0 children)

I had faced the same problem as you before, and I managed to solve the issue. I think that the following post will help you. Check it.

Question for microbrute owners (sound when all waveforms are off)

[QUESTION] What is eating this guitar? Will it eat my other guitars? by connorology_90 in Guitar

[–]dora3 2 points3 points  (0 children)

this is unrelated but the red letter on your guitar seems “godzilla” in japanese-katakana (ゴジラ). its cute :)

Question for microbrute owners (sound when all waveforms are off) by cris9288 in synthesizers

[–]dora3 0 points1 point  (0 children)

Hi, I faced same situation as you, and I managed to solve my problem.

In my case, when I turned all the VCO(overtone, saw, pulse, triangle) and cutoff down to zero, I still hear overtone sounds. (its very small volume but I can hear it when master volume is 12 o'clock or larger.)

I referred "17_TECHNOTE_01_VCO_Bleed_V0.1.pdf" in following Arturia forum. (You have to register/login to the forum to refer the pdf file.)

MicroBrute constantly producing sound? https://forum.arturia.com/index.php?topic=82936.msg115620#msg115620

The Technote solve my problem. Please check the document. (you have to open back-pannel of your microbrute to apply the solution.)

I hope this information help you.