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
488 Views Asked by Cristhopher Mancilla At
1
There are 1 best solutions below
Related Questions in POWERBUILDER
- How to show tooltip in powerbuilder
- Powerbuilder 9.0 application crashes on Windows Server 2008
- How to disable a single row in a datawindow?
- Oracle Script returning no rows
- Loop through a string in PowerBuilder
- How to check for dupes in PowerBuilder DataWindow
- Powerbuilder 7 crashes while trying to insert OLE control
- how use timer event in powerbuilder for changing multiple data windows
- Powerbuilder 12.5 Get Parent Window Variable
- Powerbuilder 12.6 .NET Error number 0, Function not found
- Validate text field in Powerbuilder
- Accessing Powerbuilder Window Instance Variables from General Function
- How to find buttons in a datawindow
- powerbuilder query to sql query
- How to access window variable in different .pbl with non-visual object in Powerbuilder
Related Questions in SHELLEXECUTE
- Java + JNA, looking for a way to run ShellExecuteW
- How to execute a file with a different extension's associated application?
- Executing Python Script from C++ program in Windows XP
- How to make a function so I can type what browser I want to open?
- Opening a C# File with ProcessStartInfo opens wrong Visual studio Instance
- Run tool does not works
- Delphi 7 - ShellExecute command not working in situations
- How to get original user token? UAC, manifest, installer
- shell scripts symbol ": >"
- Need some explanations on this Delphi code
- Shell_exec php with nohup
- shellapi error when building Google Test
- .NET app.config file containing useLegacyV2RuntimeActivationPolicy not being used when app launched via file association
- How can I run a child process that requires elevation and wait?
- PHP: svn_update and shell_exec("svn up ".DIR)
Related Questions in POWERBUILDER.NET
- How to access window variable in different .pbl with non-visual object in Powerbuilder
- How to create a setup of an Windows application using PowerBuilder
- Converting PB 9 classic app to .Net winform
- Composite datawindow
- How to open file without knowing extension in powerbuilder 12.6
- Determine the number of Visible Objects in a window Powerbuilder
- Appeon PowerBuilder2017 R2 Configuration
- How to create PDF document dynamically in PowerBuilder?
- Specific column in datawindow is not editable
- Powerbuilder : How to Get the RowNumber of specific data on datawindow
- Method 'get_Command' in type 'System.Windows.Controls.Button' not implemented
- assign compute field with text value for every row
- How can I refresh the resource file for an EXE?
- Why WPF XAML running slowly during run time?
- PowerBuilder window close event
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)
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?
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.