From Friday, April 19th (11:00 PM CDT) through Saturday, April 20th (2:00 PM CDT), 2024, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Language-bug in dir-selection-dialog-box?

Dear LabVIEW-ers,

I have a problem with a german LabVIEW installation on an english NT4. Why
do I have language-mixed button-captions (german/english), when I invoke the
dir-selection-dialog-box? Is this a LabView-bug?

Mareike
0 Kudos
Message 1 of 5
(2,490 Views)
I'm using English LabVIEW in Spanish WinNT, and the only caption not translated to the OS language is SelectCurDir. button. Is this what you are talking about? If so, i suppose this happens due to the inexistence of Select current directory button in Windows, but not sure.
Hope this helps
0 Kudos
Message 2 of 5
(2,490 Views)
Your described problem matches exact with my problem 😞
A solution is a DLL-invoke with the "SHBrowseForFolder"-API function.
Thanks.

Mareike


"Gorka Larrea" wrote in message
news:506500000005000000FD480000-1003545641000@exchange.ni.com...
> I'm using English LabVIEW in Spanish WinNT, and the only caption not
> translated to the OS language is SelectCurDir. button. Is this what
> you are talking about? If so, i suppose this happens due to the
> inexistence of Select current directory button in Windows, but not
> sure.
> Hope this helps
>
0 Kudos
Message 3 of 5
(2,490 Views)
Can you explain that more deeply? I'd like to know more...
0 Kudos
Message 4 of 5
(2,490 Views)
Hi Gorka,

create your own DLL and invoke:


....
BROWSEINFO bi;
....
ITEMIDLIST* pidl = SHBrowseForFolder( &bi );
....
SHGetPathFromIDList( pidl, selectedPathName);
....
return selectedPathName;


For more information look at this
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/pla
tform/Shell/Functions/SHBrowseForFolder.asp


I hope it helps.
Mareike

"Gorka Larrea" wrote in message
news:5065000000050000000C490000-1003545641000@exchange.ni.com...
> Can you explain that more deeply? I'd like to know more...
>
0 Kudos
Message 5 of 5
(2,490 Views)