Hi all,
Does anyone know if you're able to change the type of Barcode generated by SharePoint. I beleive that it uses Code39 by default & I need to switch it to 128.
Thanks
Stu
View Complete Post
I am creating a web site that provide coupon for it's registered member. I want to set up barcoad for each coupon that the member printed. How can i create barcode and Print them in a html page that is used as my coupon page.
Is anybody can give me solution for that???? Please help me, its argent.
Bye
With regards
Sadequzzaman Monoj
Bangladesh
Hello All,
Was hoping someone could give me some guidance on this issue. I have been working on a document management strategy for my department's sharepoint site which consists of numerous document libraries configured to a number of content types.. Lots of metadata and views.. etc
Recently, the IT department in our organization has started work on a green slate installation of Sharepoint.. new server, fresh install, master pages, site hierarchy, the works..
Guess my question is, how hard is it going to be to migrate my document libraries while keeping my metadata and content types intact? I probably have about 21 content types and almost 10 Gigs of data to transfer over... not sure what the best approach is having all this content migrated over to the new portal.
I have done some research and either only find articles on moving content types or moving document libraries, but no articles on moving both and having the content types map to the document libraries while keeping the metadata.
Any help or guidance would be appreciated.
Greg
Hello,
how can i connect over external content types in SharePoint Designer 2010 to a DB2 database?
Thanks for your answer.
I'm trying a generic part of code and i dont know if possible do want I want. I'm using WPF and unity. What i'm trying to do is a class that can receive a list of entities and stance this entities as a type in a generic class. Each stance will go in a new tab.
Firs of all I'm tring doing a list of types. I have some entities and i want do a list of entities that i would like to pass to my class like that:
List list = new List()
list.add(Broker)
list.add(Security)
list.add(Depository)
What I want is pass this list to a class that will instance each class like that.
foreach (Entity ent in list)
{
new MaintenanceViewModel<typeof(ent)>(unityContainer, regionManager)
}
I know this is wrong but maybe someone can help me with that.
Hi,
DECLARE @SID VARCHAR(10) SET @SID = '2301001001' CREATE TABLE #TEMP ( SID VARCHAR(10), BID VARCHAR(10), PID VARCHAR(10), DT DATETIME, EST VARCHAR(8000) ) INSERT INTO #TEMP VALUES ('2301001001', 'Hour', 's21', '2005-01-01 00:00:00.000', 'A') INSERT INTO #TEMP VALUES ('2301001001', 'Hour', 's21', '2005-01-01 00:00:00.000', 'D') INSERT INTO #TEMP VALUES ('2301001001', 'Hour', 's21', '2005-01-01 00:00:00.000', 'Dh') INSERT INTO #TEMP VALUES ('2301001001', 'Hour', 's22', '2005-01-01 00:00:00.000', 'A') INSERT INTO #TEMP VALUES ('2301001001', 'Hour', 's22', '2005-01-01 00:00:00.000', 'D') INSERT INTO #TEMP VALUES ('2301001001', 'Hour', 's22', '2005-01-01 00:00:00.000', 'Dh') INSERT INTO #TEMP VALUES ('2301001001', 'Min', 's21', '2006-01-01 00:00:00.000', 'A') INSERT INTO #TEMP VALUES ('2301001001', 'Min', 's21', '2006-01-01 00:00:00.000', 'D') INSERT INTO #TEMP VALUES ('2301001001', 'Min', 's21', '2006-01-01 00:00:00.000', 'Dh') INSERT INTO #TEMP VALUES ('2301001001', 'Min', 's22', '2006-01-01 00:00:00.000', 'A') INSERT INTO #TEMP VALUES ('2301001001', 'Min', 's22', '2006-01-01 00:0
Hello, everyone!
I have a class:
[Serializable] [Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute(Microsoft.SqlServer.Server.Format.UserDefined, MaxByteSize = 8000)] public class CriterionTemplate : IBinarySerialize, INullable { public static readonly string TABLE_PREFIX = "TEMPLATE_"; // IBinarySerialize public void Write(System.IO.BinaryWriter w) { w.Write(this.ToString()); } // IBinarySerialize public void Read(System.IO.BinaryReader r) { try { string str = r.ReadString(); CriterionTemplate tmp = CriterionTemplate.Parse(str); this._CriterionList = tmp._CriterionList; this._Name = tmp._Name; this._Rule = tmp._Rule; this._Version = tmp._Version; } catch (System.Exception e) { } finally { } } // ??? private bool ValidateTemplate() { return true; } private bool is_Null; public bool IsNull { get { return (is_Null); } } public static CriterionTemplate Null { get { CriterionTemplate template = new CriterionTemplate(); template.is_Null = true; return template; } } // ???????? ??????? [XmlElement("Name", typeof(string))] private string _Name = ""; public string Name { get { return _Name; } set { _Name = value; } } private List<Criterion> _CriterionList = new List<Criterion>(); [XmlElement("CriterionRange", typeof(CriterionRange))] [XmlElement("CriterionString", typeof(CriterionString))] [XmlElement("CriterionBool", typeof(CriterionBool))] public List<Criterion> CriterionList { get { return _CriterionList; } } // ???????? ???????? public void AddCriterion(Criterion criterion) { foreach (Criterion cr in _CriterionList) if (cr.Name == criterion.Name) throw new Exception("Cannot add new criterion to list : criterion with the same name already exists!"); this._CriterionList.Add(criterion); } // ??????? ???????? ?? ?????? public void RemoveCriterion(Criterion criterion) { this._CriterionList.Remove(criterion); } public Criterion GetCriterion(int index) { if ((index >= 0) && (index < _CriterionList.Count)) return _CriterionList[index]; else return null; } [XmlElement("Version", typeof(int))] private int _Version = 0; public int Version { get { return _Version; } set { _Version = value; } } [XmlElement("Rule", typeof(Enum))] private RuleType _Rule; public RuleType Rule { get { return _Rule; } set { _Rule = value; } } public string RuleToStr { get { return _Rule.ToString(); } } // ?????????? ??????? ? ?????????? ???? public override string ToString() { if (this.Name == null)
Hi everybody,
I have created a feature that creates a couple of Content Types and Custom List instance. Everything is being created correctly and works as expected, but my problem is that those Content Types and Custom List instance are not being removed when the feature is being deactivated. Now come the questions...
- Is that normal; I mean feature deactivate does not remove Content Types and Custom List?
- What should I do to make nice clean up of those (I am definitely not looking for a custom code solution like writing code in FeatureDeactivating feature receiver; that is always the option, but there should be an easier way of doing that)?
Some background info: I actually needed to create deployment solution with couple and to take the lists and content types I used “save site as template”, afterwards imported wsp into VS and removed everything except those Content Types and Custom List.
Thanks in advance!
Tofig
Original workflow project was compiled on 32 bit machine. I exported it to VS.Net 2010 and it fails to compile. Has anybody seen this error?
-Stan
I borrowed some of the terminology ( S_Context session) from the following thread:
http://social.msdn.microsoft.com/Forums/en/wcf/thread/849d5331-0fe5-4453-9ea0-4fa54a3f1d67
a) SessionMode specifies whether or not the contract requires a sessionful binding. Bindings can support several types of sessions ( SSL session, Tcp/IP-based session, S_Context type of sessions ), so which types of sessions do SessionMode values affect?
b) If SessionMode is set to NotAllowed , how does that affect SSL session?
Thank you