I need to open a file without knowing its extension in powerbuilder 12.6. I already have the path without extension file. Example : Path/file(no extension)
How to open file without knowing extension in powerbuilder 12.6
490 views Asked by Cristhopher Mancilla At
1
There are 1 answers
Related Questions in POWERBUILDER
- how to prevent a messagebox from displaying when i don't need it in some cases in powerbuilder
- Duplicated primary key error even though it doesn't exist in Powerbuilder 19
- How do I validate a strong login password in Power Builder?
- Powerbuilder messagebox text
- Powerbuilder Response window hangs then App closes - Any ideas?
- Launch FTP url in Edge-IE mode from powerbuilder
- how to get log from attendance machine in powerbuilder?
- Migrating a Complex PowerBuilder Application to .NET Core
- Power builder 2022 and Blueprism Active Accessibility Compatibility Issue
- powerbuilder 2022 graphmode SetSeriesStyle doesn't work
- Row changed between retrieve and update. Powerbuilder Error
- Powerbuilder randomly checking and unchecking Extend Ancestor Script
- PowerBuilder 2019 R3 - Is it the filter method which caused the application to crash?
- Powerbuilder preprocessor directive and DEBUG not working
- MultisubnetFailover as Connection string in powerbuilder
Related Questions in SHELLEXECUTE
- Strange behaviour of Process.Kill when NOT using ShellExecute on C# .Net Core 7.0
- cmd command in ShellExecuteW
- after changing default printer and then using win32api.shellexecute all prints sent to the first default printer that i had set it at first in python
- Copying code and creating build by executing shell script on MacOS(Ventura) through API fails to copy the code due to permission errors
- VBA code shellexecute not sending PDF doc to printer
- win32 ShellExecute drops messages from the queue
- Open multiple images with default image viewer (Microsoft.Photos.exe)
- How to use process.start runas in WinUI 3?
- npm run build fails "only when" executed using Jenkins execute shell
- Cannot see/execute "c:\windows\system32\rdpclip.exe" from Delphi code, but can see it and execute it using the same user login in File Explorer
- Powershell ISE: Trying to execute a file.cmd to run:
- SW_HIDE doesn't hide my second application C++
- How to prevent use of 8.3 names in HKCR open commands?
- ShellExecuteA but I don't know the extension
- Read standard output without leaking memory
Related Questions in POWERBUILDER.NET
- How to remove slowness of powerbuilder 12.6 application?
- How to open file without knowing extension in powerbuilder 12.6
- How to create PDF document dynamically in PowerBuilder?
- Appeon PowerBuilder2017 R2 Configuration
- Error running powerbuilder .net assembly in IIS wit ASP.NET MVC app
- Powerbuilder : How to Get the RowNumber of specific data on datawindow
- Editmask Powerbuilder 12.6 Build 4121
- Transaction not connected when the app is called from a website
- How to access window variable in different .pbl with non-visual object in Powerbuilder
- How to display loading dialog when a button clicked
- Error trying to run PowerBuilder.Net 12.5
- PowerBuilder 12.5 error while starting "the application has failed to start because its side-by-side configuration is incorrect."
- Button Clicked Event.. PowerBuilder 11.5
- DBHandle function always fails in PB12.net
- PowerBuilder window close event
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
I found the solution to my problem. I only have the string that contains the path and the name of the file(without extension). For example: path = "C:APPLICATIONS/FOLDER1", FILENAME = "TEST123" So, the function dirlist can search inside the directory defined and store that coincidence(s) in a listbox. listbox1.dirlist(path + "" + filename + "") This function search all the coincidences inside the path with the filename specified and stores in the listbox. It works as the "%" + @stringtofind + "%" in sql. Then, it is simple to search your full filename (with the extension) in the listbox. Finally, use execute shell function choosing your full filename.