I eventually found a way to get the links, but they are ugle, and now I have to check the link for every single file, as they are not ordered in a gallery/subgallery structure, but like thisone: /NR/rdonlyres/D98C8856-E410-4841-813C-21C8961E45BC/0/filename.doc where D98C8856-E410-4841-813C-21C8961E45BC changes for every file, and not just for every gallery. What a mess and waste of time.
Aron Henning
Posts
-
linking to resources in MCMS -
Eclipse comes last in quality voteHeh, when doing my java classes at the university I found Eclipse so awfull that I did all the coding in a texteditor and compiled from cmd, just to get rid of it.
-
linking to resources in MCMSI create pages in MCMS 2002 from templates, and now I want to link to a document. The document is in the Resource Manager. My problem is that i cannot find a way to link to resources. Does anyone know the url to resources in the resource manager?
-
Hey! Look what I have found!Thanks. I really do. Regards Aron Henning
-
Hey! Look what I have found!Sorry, I just forgot Morten
-
Hey! Look what I have found!Hey Colin You are welcome. I really believe it is a great initiative Anders and You have taken. Regards Aron Henning
-
Hey! Look what I have found!The other day I found a new webside offering Blogs, mail-box with forward as an option, and ftp space. All for free. The page I found is wdevs.com Regards Aron Henning
-
unhandled exeption in ListViewI have a ListView that contains the subfoldes of a local drive. Whan i click on a subfolder the listbox should display the subfolders of this folder instead. the funktion is as follows: private void FolderList_SelectedIndexChanged(object sender, System.EventArgs e) { try { ListView.SelectedListViewItemCollection SelectedDir = this.FolderList.SelectedItems; foreach ( ListViewItem Dir in SelectedDir ) { FolderList.Items.Clear(); foreach (string d in Directory.GetDirectories(Dir.Text)) { FolderList.Items.Add(d); } } } catch { MessageBox.Show("Error entering directory","Error",MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } } Now when i try to access the folder "System Volume Information" I first get my MessageBox and then a messagebox saying that I have an unhandled exeption. But the funny thing is that I only get this message in the release version. Can annyboddy tel me what I do rong? The exeption text is as follows: ************** Exception Text ************** System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values. Parameter name: '5' is not a valid value for 'displayIndex'. at System.Windows.Forms.ListViewItemCollection.get_Item(Int32 displayIndex) at System.Windows.Forms.ListView.LvnBeginDrag(MouseButtons buttons, NMLISTVIEW nmlv) at System.Windows.Forms.ListView.WmReflectNotify(Message& m) at System.Windows.Forms.ListView.WndProc(Message& m) at System.Windows.Forms.ControlNativeWindow.OnMessage(Message& m) at System.Windows.Forms.ControlNativeWindow.WndProc(Message& m) at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)