86 Topics

Member Avatar for
Member Avatar for Tko_1

I needed a script that would grab all the folders in the directory and add them to a dropdown list and allow the user to upload to there choosen folder. This is what i came up with. (upload script is not mine) Thought i would share.

Member Avatar for rproffitt
0
4K
Member Avatar for Reverend Jim

##vbScript - Browse for Folder or File Please see my post [vbScript - The Basics](https://www.daniweb.com/programming/threads/516400/vbscript-the-basics) for more details on vbScript. Some scripts need input (other than from the command line) from the user. This can be read from the console (StdIn) or from a pop-up textbox (InputBox). This is fine …

0
14K
Member Avatar for Siberian

I have a folder in one of my partitions with this name; 6a004149b189707931f3b5 Windows won't let me delete this folder as it claims I need permission from **Network Service**; what is this folder ?

Member Avatar for mechbas
0
321
Member Avatar for Siberian

I'm experiencing a networking problem which I asked elsewhere and so this is the problem and this was the solution I was given, unfortunately the solution doesn't work in Windows10. The problem was non-existant six months ago, which is a latop and a desktop both running Windows10. As of the …

Member Avatar for Siberian
0
275
Member Avatar for kevinn

I was wondering how for example drop box or a NAS is coping with the different file systems on different operating systems when sharing a folder? I was reading more about the different file systems and noticed that they ol have their size limits or they all safe their files …

Member Avatar for Shabbir_2
0
361
Member Avatar for vijiglad

This is the code to delete image in a folder... [CODE]<?php $path = "uploads"; if(isset($_POST['file']) && is_array($_POST['file'])) { foreach($_POST['file'] as $file) { unlink($path . "/" . $file) or die("Failed to <strong class='highlight'>delete</strong> file"); } header("location: " . $_SERVER['REQUEST_URI']); //redirect after deleting files so the user can refresh without that resending …

Member Avatar for Sujeet_1
0
17K
Member Avatar for chozotheqhai

Hello, I'm getting problem file or directory not found when I try to load the file from another directory. Kindly help me fix this problem. Thanks you. Website -classes -core.php -inc -autoload.php -config.php -index.php **Index.php** <?php require_once('inc/autoload.php'); $core = new Core(); $core->run(); **autoload.php** <?php require_once('config.php'); function __autoload($class_name) { $class = …

Member Avatar for diafol
0
577
Member Avatar for ZER09

there is folder on a system protect on windows system restore and it has an active protection but it was marked as missing, the folder is label "G:", i dont know how i can remove this. can someone can help me about this. thank you

Member Avatar for Kevin_14
0
179
Member Avatar for Samyx

Hi guys, I am trying to create a login page using apache mod_auth_form to authenticate users. Once the user is authenticated he/she should be able to access the main page. # my public directory: # C:/webroot/ regtrack_newSG.php # my protected directory: # C:/webroot/myapp/ regtrack_studysiteone.php # my password file: C:/Apache24/passwd/passwords # …

Member Avatar for cereal
0
1K
Member Avatar for philpense

Have what I believe is a PST folder of downloaded email from an Optimum Online account. - Within Outlook how can one confirm that this is PST file/folder - What is the proper way to get these emails to a DVD, then check if the transferred data is correct

Member Avatar for gerbil
0
248
Member Avatar for Programmer592

Hi. I have a program that detects all the folders that are open and displays each one in a ListBox item. ![2014-12-25_15_49_20-DLAUBEFN_(Running)_-_Microsoft_Visual_Studio.png](/attachments/large/4/8dcefef15b7155ed7cc20f56c743d34f.png "align-center") What I want it to do is if a certain folder is closed, I want it to start a batch file and close itself. I know how …

Member Avatar for Programmer592
0
315
Member Avatar for rmeron

Tried to create secured documents as I used to do in Windows by creating a password for documents. Ran into problems since I did not realize that Apple did not have the same possibility. I created a new folder and moved all my secure documents into it and somehow came …

Member Avatar for bmwwbb54
0
200
Member Avatar for Yogesh_5
0
155
Member Avatar for roguexe

I have 2 buttons, one is a browse button that allows you to choose which folder you want to select the images from and a GO button that gets a random image from that folder here is what i've gotten so far: Public Class directory Private Sub browsebtn_Click(ByVal sender As …

Member Avatar for Reverend Jim
0
870
Member Avatar for rmeron

H E L P !! Trying to password protect two folders, I created a compressed folder and then moved two folders and a few documents into the compressed folder, but could not create a password. When I later tried to open the compressed folder, it did not show me any …

Member Avatar for tompatrick
0
212
Member Avatar for elouch

Hi everyone, need some help with outlook. i need to extract information from outlook messages from default folder(inbox) to subfolders(including subfolders of subfolders) but it seems that i'm having problem on calling the folder from the outlook's default pst file. below are the codes i've already tried. outlookfolder = outlookmapi.Folders(folder_name) …

Member Avatar for elouch
0
501
Member Avatar for CPT

First, to explain what I want to do: I have a folder structure like this: BSDS300\images\test\ -which contains JPEG files, and some other files(only .jpg files are of interest) BSDS300\human\color\ -which contains many folders, in which I have .seg files with the same name as the .jpg file Example: BSDS300\images\test\3096.jpg …

Member Avatar for RikTelner
0
371
Member Avatar for poojavb

Folder name such as da12e5154f6b530007fd9e got automtically created in my system... Can anyone please tell me why such folders get created and how can I delete it...

Member Avatar for shahaksh44
0
1K
Member Avatar for ceelos1974

Hi everyone I'm new to c++ but have had some luck so far. But I have of course met a problem. The program I'm making is supposed to find a a unkown file with an ID. The onliest thing I know of the file is the folder its in. so …

Member Avatar for Ancient Dragon
0
409
Member Avatar for Cristianh21

Hello, I'm having a problem with my code. It seem to only echo out the picture name from my database and not the picture. This is my code search.php $result = mysql_query("SELECT * FROM all WHERE (`title` LIKE '%".$query."%') OR (`add_type` LIKE '%".$query."%')") or die(mysql_error()); if(mysql_num_rows($result) > 0) { while($results …

Member Avatar for broj1
0
279
Member Avatar for tbuchli

// Create the cboSelectGroup, and add it to the navigation panel: //String[] strDefaults = {"Defaults"}; //cboSelectGroup = new JComboBox(strDefaults);Public Class Form1 cboSelectGroup.setPreferredSize(new Dimension(150, 40)); cboSelectGroup.setMinimumSize(new Dimension(150, 40)); cboSelectGroup.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { btnImagesActionPerformed(evt); } });

Member Avatar for tbuchli
0
283
Member Avatar for devianleong

Hi,Currently I'm using this tutorial : [Click Here](http://docs.cksource.com/CKFinder_2.x/SelectFunction) but the output is /home/xxx.com/public_html/images/image/1234.jpg How can I change the path to /images/image/1234.jpg ? Please help me ><

Member Avatar for devianleong
0
182
Member Avatar for sidim

Hi, I can't seem to find the answer I'm looking for online (maybe keywords are too common?). Is my code only verifying whether my directory is created? Or is it actually validating? I need it to validate, but I'm unsure whether or not it's doing that. $dirPath = $_POST['company']; $result …

Member Avatar for sidim
0
324
Member Avatar for Syed Nasir ali

Hi when i run php file on local host it directly go to download folder it not come in run condition Please help me i am new in php thank

Member Avatar for pzuurveen
0
256
Member Avatar for sash_kp

While i try to access the .htaccess file its saying access forbidden,which is obvious. But the listing of all other files also getting displayed,i.e no restrictions are imposed on those files which are under the same directory as the .htaccess. However i want to restrict everyone but myself from those …

Member Avatar for cereal
0
275
Member Avatar for devianleong

Hi, I'm very new to smarty. I would like to learn more about smarty engine. I understand how smarty works like assign and display but how can I implememt something that able to switch template? I mean when I upload few different template with different name and CMS will auto …

Member Avatar for pritaeas
0
193
Member Avatar for samoslook

well how can i stop accessing a folder by using in vb in the page load(request.browser......etc) i used this before but i forgot how i m not talking about authentication but if u have other way or method to do that it would be better

Member Avatar for samoslook
0
177
Member Avatar for imti321

i have three entries in phpmyadmin id name and image i want to upload image from the form into database and display that back into the form where from i am uploading it.I get this error PHP Warning: mysql_insert_id() expects parameter 1 to be resource, null given in D:\path\to\sitename\httpdocs\sql\uploadimage.php on …

Member Avatar for Webville312
0
443
Member Avatar for rexdon
Member Avatar for tinstaafl
0
280
Member Avatar for november_pooh

Hi all, As i mentioned in thread title, i want to create and delete folder. How i can create and delete folder/directory with vb6. Please help Regard

Member Avatar for rishif2
0
339

The End.