I have a SharePoint website running in the server. Which has a column name text in different language. I want to change the text in English language, but this column doesn't have link to click on it and make it editable- it seems this is dead column.
Can you please suggest how can I change such column name of list in SharePoint 2010. Image screenshot is below
I believe this will be possible if we know where to modify in the database to change the text of column name. Please give your valuable suggestions.
I have used SharePoint Manager 2010 to do this text changes for the current sharepoint website.
Cheers!
Related
I'm new to Microsoft Office Professional Plus 2013 Access.
I am developing an application using:
-Microsoft Office Professional Plus 2013 Access
I'm implementing an application that will generate various pdf files.
I have conditional business logic that determines if a particular field's data, and it's corresponding label should be displayed. If said field's data does Not need to be displayed then the generated pdf will show empty blocked out spaces.
To elaborate, I have a lot of code that looks like the following:
txtBoxInQuestion.Visible = Not IsNull(txtBoxInQuestion)
lblInQuestion.Visible = Not IsNull(txtBoxInQuestion)
Therefore, if the conditional logic determines that a field and it's label should Not show up then I have all empty blocked out spaces showing up like in the following generated pdf
Could someone please tell me how I can implement the system in such a way that these empty blocked out spaces do Not show up?
One of my clients requires my help to create corporate document templates in Microsoft Word - from letter, fax to memo.
Here are some of the requirements:
Fixed sections with no changes to font type, size and color
Fixed sections but the admin is able to edit the content
Placements of Sections (e.g. 3cm margin)
User is able to choose if they want a section displayed
A body text content that will be left blank but users can key in.
A different set of rules/formatting for the continuation pages (page 2>)
Just wanted to tap on the brains of all the VBA experts here and learn what is the best way to approach this. I understand that Word Document allows you to create templates and content locking - is that sufficient? I believe with Macro, the client can have stricter control (creating menus to select the required template, and forms to input the information).
Thanks for all your help in advance.
Cheers,
Alvin
I have a crystal report I am trying to pull images, word docs, and zip files onto the report as a downloadable hyperlink so that whoever prints the report will have the ability to download the "attachment" they choose locally to their desktop.
The files are stored in folders on a database server. The view in the database named "vAttachmentsReport" contains the file path which points to the folders where the images, word docs, and zip files are stored. I have attempted to create a formula:
however, still no luck. I haven't found much information or any articles/examples of anyone else doing this. Has anyone else seen any examples or created something similar?
I'm not sure about doing this in eclipse, but if you open it up in the Crystal Report Editor you can right click > Format Field and go to the Hyperlink tab. This tab gives you several options for linking other files, websites, ect. via Hyperlinks. Since your database field already has the location, I would recommend adding the name of the file from your database as a field in the report and in its Hyperlink tab select the 'A Website on the Internet' radio button. Then click the formula button and enter the name of the database field that contains your file path.
Note: this will only work if you can enter the file path into your Internet Browser's address bar and download the file. If that doesn't work you may need to add a prefix to the formula with the server's name or the website's name. To this up: you need the whole website address like "http://textfiles.com/100/914bbs.txt" as a result of your Hyperlink formula.
I am trying to create a Microsoft Word file in VB.net which is read only.
My aim is that user will input the data in a Windows form, after pressing export button it'll get exported to a Word document. But here's a twist: I want this Word file to be read only.
Is there any option to do this? I have tried exporting through Crystal Report, but its still editable.
Any help would be appreciated.
You can use the File.SetAttributes method for that, I think. Check the MSDN site.
I was wondering how can I change currency format from US ($) to EURO (€) for a specific TextBox in Microsoft ReportViewer?
Because it always displays a dollar sign in front and the format is ##,###.## and as for euro it must be like ##.###,##
To add to the options already stated:
You can set the Language property of the report through Business Intelligence Studio (VS with SSRS project support) to =User!Language. This then picks up the culture/locale of the current thread.
I had to use this when users from multiple regions used the same reports.
Well the solution to that problem is to change the general report rdlc language to some of European country (for example I've put it to German language) and the currency field is displaying as it is supposed.
Thanks for the above. I solved my problem with your help however I just wanted to add some detail to this, for those of us who are just starting with report viewer.
The I did this step by step in VB2010
Right Click on the report in Solution explorer
Select Open With
Then select automatic editor selector (xml)
In side the report tags, enter the following tag. the en-gb should be changed to your country code.
<Language>en-gb</Language>
so it should looks something like this
<Report xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition">
<Language>en-gb</Language>
<DataSources>
<DataSource Name="DataSet">
hope this helps
As You've discovered, you need to change the Language of the report.
Some extra info: You can't seem to do this via the GUI, you need to edit the <Languauge> element in the xml of the RDLC file. this link is about RDL files, but the details are the same for RDLC.