Formatting TotalPhysicalMemory?
Jun 20, 2009Total Physical Memory: 2144903168
Available Physical Memory: 934649856
Total Virtual Memory: 2147352576
[code].....
Total Physical Memory: 2144903168
Available Physical Memory: 934649856
Total Virtual Memory: 2147352576
[code].....
I know I can pull the amount of memory by using My.Computer.Info.TotalPhysicalMemory but I would like it to show like it does under My Computer properties. What do I need to do this?
View 1 RepliesI have some VB .NET software that interfaces to a load of old (but sound) COM objects. The VB provides a GUI for the COM objects, part of which consists of setting various options on the COM objects - several of which relate to string formatting.I have a simple pair of VB .NET functions that convert basic %f, %d, %g formats to/from .NET equivalents using a large select case covering specific common strings, but they don't cover all formats.[code]Before I start diving in and making it more versatile with some parsing, does anyone know of a class (eg VB or C# .NET) that provides a decent ready-made implementation? Or perhaps some regexp wizadry could be used?
View 2 RepliesWhile I understand there are properties of MailItem that would allow one to programmatically create a formatted email, I would prefer the ability to copy the body of an email that is already formatted to my liking (bolding, italicizing, embedded pictures/tables, set margins, etc.) copy and paste it to a newly composed email such that this formatting is preserved.
View 4 RepliesI have the following code, which generates insert queries
For Each f As String In Directory.GetFiles(d)
objSQLStringBuilder.Append("insert into table1 (full_path, file_name) values ('" & f.Replace("'", "''") & "', '" & f.Remove(0, Len(d) + 1).Replace("'", "''") & "');")
Next
However, the paths which it finds are formatted as follows
c:program filesmicrosoft officewinword.exe
I need to format the paths as follows
file:///c:/program%20files/microosoft%20office/winword.exe
How can I modify the above code to do this?
I have a Gridview that has a timestamp as one of the rows. When I read the data from the database the data is in the format( mm/dd/yyyy hh:mm:ss ). I've figured out how to format the way I want it which is just the ( mm/dd/yyyy ) and droping of the (hh:mm:ss) with the following code:
[Code]...
I have a Dynamic Fields comming from database. These fields populated on RichTextBox after changing the color.Means Different Fields in Different Color.
View 1 RepliesHow does the VB.NET compiler in this case determine which function is being called?
To me, it seems like it should raise an error because it CAN'T tell (or at least that's what it seems to me.)
Public Class Form1
[code]...
I just had a quick question about formating in currency in Visual Basic 2010 express. I already understand how to get it to work during runtime using the FormatCurrency feature, but I am wondering if there is a method to do it so that the user's input becomes currency instantly? (basically, is there a way to make the textbox always display as currency, rather than as a weird decimal?)
View 7 RepliesI am using a RichEdit control for the user to type in the content of the e-mail.
View 6 RepliesI am creating an XML table, and the table needs to have a title and then column and row headings. How can i write this in vb.net, the code in vb6 is below, is there something like XMLfile.Content = Blank? XMLfile is a class, cmbEngineOption is a check box on the interface. i'm not sure what tabstyle or frame are, but title is suppose to be refering to the title of the XML table.
[Code]...
I'm taking values from Numeric Ups and Downs for Hours, Minutes and Seconds. The problem is that, for example, if the time for example is 9.15 am it will show as 9:15:0 What I want to do is format them so if any of the values(Hours, Minutes or seconds) is less than 10, it will add a 0 before the number so as the number shows as 09:15:00. What I tried is this but it does not work: [Code]
View 3 RepliesAt the moment i am doing my IT PROJECt for college and i need my project not only to work but look good.
CVBox.AppendText(TextBox1.Text & vbNewLine & data & vbNewLine & ComboBox1.Text & vbNewLine &
nationality & vbNewLine & vbNewLine & TextBox5.Text & vbNewLine & "Tel. " &
[code].....
i am trying to format the result of a calculation to time.In VB6 I would use: answer = format(answer,"00.00")But in VB2008 this does not work,What I am trying to ahieve is always to display "00.00"
View 10 RepliesI am using a GridView and I need to show the currency in Arabic culture so I used this code which is working very well,
DataFormatString="{0:c}" The results will be like this : د.ك. 55.000 Now what I want is to change it like this : 55.000 K.D ???
How do I format my vb.net mvc date to a shortdate in my view
<td>
<%: Html.DisplayFor(Function(modelItem) currentItem.DateCreated)%>
</td>
I'm doing some math with the Timespans in .Net, and occasionally the sum results in a negative Timespan. When I display the result I am having trouble formatting it to include the negative indicator.
Dim ts as New Timespan(-10,0,0)
ts.ToString()
This will display "-10:00:00", which is good but I don't want to show the seconds so tried this.
ts.ToString("hh:mm")
This returns "10:00" and has dropped the "-" from the front which is the crux of the issue. My current solution is this:
If(ts < TimeSpan.Zero, "-", "") & ts.ToString("hh:mm")
but I was hoping to accomplish the same by using only the format string.
i want to write data in csv file using vb.net. so before writing the data i want to format the cell to text.how to do this.
View 2 RepliesI wrote a small program in VB.NET to export data from DataGrid to Excel and it works perfectly. My manager now wants me to display the data in a presentable format. How should I go about it. I recorded a macro but was unable to apply that in vb.net.
View 1 RepliesI have a program that is calculating the cost of a certain number of plane tickets, the validation and basic calculations are fine the only problem i've got this: There is a discount text box field called "txtDiscount" where IF a user enters a number it will discount this as a percentage off the total cost of all the tickets, but I cannot get it to work [Code]
View 2 RepliesI know how to use the dataformattext field with a boundfield but now i am taking two of my columns and dividing them for a percentage so i want {0:P1} also how can i stop divide by 0 errors
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# Eval("total2")/Eval("acdcalls")%>'
Visible='<%# Eval("total2")/Eval("acdcalls") %>'></asp:Label>
</ItemTemplate>
Private Sub Item_TypeComboBox_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Item_TypeComboBox.SelectedIndexChanged
'auto increment for each type of items
[code].....
I'm looking for the format specifier for String.Format() (or if there is a NumberFormatInfo class that will do it) to format a integer as octal in .NET, as {0:x} formats it as hex, e.g: String.Format("{0:x}", 15) // returns "f"
View 1 RepliesCan someone give me some code to set the cell of an excel spreadsheet to a number format that use a max of 2 decimal places. Or would it work better it I change the data I am putting into the cell to a proper format? Here is a sample of data that is going in. Right now its going in as a string... col("ADJ").ToString() where col is a DataTable oject.
View 2 Replies I currently have this to produce and emailI want to add color to 1 line and then set it back to back once it has complete
the line
oMail.IsBodyHtml = True
oMail.Priority = MailPriority.High
[code].....
I am writing a new app that has some special text formatting requirements, but I'm finding it difficult to get the text to line up properly. I am currently using the following code:
[Code]...
I have a DGV that is bound to an Access DB DataTable. I have added a column in the DB that is either a 0 or a 1. When the program loads, I want to change the backcolor and forecolor of each row based on the value of this column's cell. ie: a 1 makes the row red, a 0 makes the row green. this column would be hidden in the DGV.
Is this possible to do at runtime even though it is bound?
I'm not sure when I would actually do the color swap, formLoad?
Second question, as I iterate through each row of the DataGridView and need to change the value of this column, will this update my DB automatically, or do I need to call an update() after each row?
Am looking for a Currency Text Box control that will accept numeric key input and display entry as Currency according to Users Regional Settings.
Additionally, when an assignment is made such as Currencycontrol.text= 123.45 + 500 , user will see value displayed as $623.45 or formatted to regional specifications.
I do need a control rather than formatting procedures since my form could have 24 or more currency fields.
Please i am using a datetimepicker for get user time inputs so i want to custom format the control so that it will accept hour,minutes and seconds as well.I am using this code but it is not working for me.It gives me sqlexception Conversion failed when converting date and/or time from character string.me.timeStart.customformat="hh:mm:ss"..with this it is still not picking initially the data type for the field was time and i have change it to nvachar which is still not working
View 4 RepliesI have a DataGridView bound to a DataTable in a DataSet.I set all columns of the DataTable to System.Double.I want the last row of the DataGridView to display "PASS" or "FAIL" depending on some condition of the values in that column.How do I do this?
Ideas:
lastCell = IIF(condition, Double.PositiveInfinity, Double.NegativeInfinity)
Then, apply some conditional formatting (Inf -> PASS, -Inf -> FAIL) to the final row of the DataGridView.