473,657 Members | 2,559 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Return Value To String Builder

233 New Member
I have a method where I am building an html email. Part of the way through the method, I have an if-statement that direct to another method based off of a field. For example:

htmlEmail.Appen d("</div><div class=UnitPrice >");
htmlEmail.Appen d("Unit Price:");
htmlEmail.Appen d("</div></div><hr />");

if (ToCompanyName == "Company1")
getLineItems_Co mpany1(htmlFile , htmlEmail);
else if (ToCompanyName == "Company2")
getLineItems_Co mpany2(htmlFile , htmlEmail);
else if (ToCompanyName == "Company3")
getLineItems_Co mpany(htmlFile, htmlEmail);

htmlEmail.Appen d("</div><hr /><div class=Section5> ");
htmlEmail.Appen d("<div class=Notes>Not es:<br />");

I would like the selected method to insert an additional portion of the string builder. I have tried to return string builder htmlEmail, but this does not work. Thoughts?
Apr 1 '08 #1
6 2048
mcfly1204
233 New Member
Also, the called method should return something such as:

htmlEmail.Appen d("<div class=Line_Item ><div class=LineNum>" );
htmlEmail.Appen dFormat(LineNum 1);
htmlEmail.Appen d("</div><div class=Qty>");
htmlEmail.Appen dFormat(Qty1);
htmlEmail.Appen d("</div><div class=ItemID>") ;
htmlEmail.Appen dFormat(ItemNum 1);
htmlEmail.Appen d("</div><div class=Descripti on>");
htmlEmail.Appen dFormat(Desc1);
htmlEmail.Appen d("</div><div class=UnitPrice >");
htmlEmail.Appen dFormat(UnitPri ce1 + " " + CurrencyCode);
htmlEmail.Appen d("</div></div>");
Apr 1 '08 #2
Plater
7,872 Recognized Expert Expert
Pass the string builder by reference
Apr 1 '08 #3
mcfly1204
233 New Member
I should have added that previously this worked as expected minus the if-statement. I simply had one method that would return lines to add to the string builder. I will verify that my individual methods are not the issue here.
Apr 1 '08 #4
Plater
7,872 Recognized Expert Expert
Try something like:
Expand|Select|Wrap|Line Numbers
  1. private static void getLineItems_Company1(string htmlFile, ref System.Text.StringBuilder htmlEmail)
  2.     {
  3.         //
  4.         // No need to have a return value, since the "ref" attribute will handle it
  5.         //
  6.     }
  7.  
Apr 1 '08 #5
mcfly1204
233 New Member
Try something like:
Expand|Select|Wrap|Line Numbers
  1. private static void getLineItems_Company1(string htmlFile, ref System.Text.StringBuilder htmlEmail)
  2.     {
  3.         //
  4.         // No need to have a return value, since the "ref" attribute will handle it
  5.         //
  6.     }
  7.  
Apparently I was just being sloppy. ToCompanyName should be FromCompanyName . Once changed, things work as expected.
Apr 1 '08 #6
Plater
7,872 Recognized Expert Expert
Apparently I was just being sloppy. ToCompanyName should be FromCompanyName . Once changed, things work as expected.
Another victim succumbs to the copy/paste monster.
Apr 1 '08 #7

Sign in to post your reply or Sign up for a free account.

Similar topics

30
2144
by: John Bailo | last post by:
The c# *return* statement has been bothering me the past few months. I don't like the fact that you can have different code paths in a method and have multiple return statements. To me, it would be more orthogonal if a method could only have one return statement. --
5
1564
by: ad | last post by:
I have a string like string myString="dog,cat,dog,tiger" I want to delete the duplication part, and make myString to "dog,cat,tiger" How can I do that?
33
4666
by: genc_ymeri | last post by:
Hi over there, Propably this subject is discussed over and over several times. I did google it too but I was a little bit surprised what I read on internet when it comes 'when to use what'. Most of articles I read from different experts and programmers tell me that their "gut feelings" for using stringBuilder instead of string concatenation is when the number of string concatunation is more then N ( N varies between 3 to max 15 from...
11
8452
by: TheRain | last post by:
Hi, I am trying to append a carriage return to my string using the string builder class, but when I do this the string ends up containing "13". I tried this multiple ways like so sb->Append('\r'); and also
4
1921
by: James Page | last post by:
Hi all I have a shopping cart object which I'd like to send the contents via an e-mail. I get an error saying 'hybridDictionary' cannot be converted to string. Does anyone know how to do this or point me in the right direction? Thanks
6
1581
by: Jeff Williams | last post by:
I have a string which is formated like this Name1=Value1; Name2=Value2; Name3=Value3 I need to split this to an array of Name1=Value1 Name2=Value2 Name3=Value3
7
1432
by: simonZ | last post by:
I have array variable transfer: String transfer which has some data Than I would like to convert this data into string: Which way is more efficient: StringBuilder rezult=new StringBuilder(); for (int i = 0; i < transfer.Length; i++) {
2
1812
by: shapper | last post by:
Hello, I am adding an Attribute to a TagBuilder and it accepts a KeyValuePair: builder.Attributes.Add( ... How do I add the KeyValuePair? I am still used to VB.NET and I am always getting errors in my sintax.
5
2486
by: jimbrown | last post by:
This works in VS2008 for 32-bit projects but fails for 64-bit projects. How do I return a result that C# will interpret as a string? C# private static extern string getAString(); String xx = getAString();
0
8392
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
7324
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6163
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5632
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4151
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4302
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2726
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1953
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1611
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.