Tag Info

New answers tagged

2

Based from this link, maybe you can try this: Dim dateval As String = "January 2010" Dim year As String = dateval.Split(" "C)(1) Dim month As String = DateTime.ParseExact(dateval.Split(" "C)(0), "MMMM", CultureInfo.CurrentCulture).Month.ToString() Dim yourdateval As String = String.Concat(year, month)


0

Dim TestString As String ' Returns a string with 10 spaces. TestString = Space(10) ' Inserts 10 spaces between two strings. TestString = "Hello" & Space(10) & "World"


0

Right here's a solution. It's a bit more lengthy that I would have hoped, and you can probably speed it up by splitting the textbox text property into single characters and checking them all (but then if you want you code to put letters into the textbox doing so would over right that). Anyway I tested this and it works fine, and it comes out as 0ms on the ...


0

If I'm not mistaken you can do it with clicking the header section, and you can continue to click it to choose between the year or the month. But I don't think you can set the Extender to show only the month and the year on the first click, to my knowledge at least, you can't :)


1

It is better to create your custom control and use it wherever you want numeric textbox Also for number of digit limitation i think there is a maxlength property for the textbox May the following link answer you question link


1

Hey i also have an almost similar question here: How do i protect my sfx from being opened by other winrar, winzip, 7zip applications? really need help..


0

You can also add a delegate to the end, if you want to single out controls with a certain attribute. In this case, it only looks at the visible HtmlTextAreas: For Each control As HtmlTextArea In myDiv.Controls.OfType(Of HtmlTextArea)().Where(Function(textArea) textArea.Visible = True) 'Do stuff here control.InnerHtml = "I am visible" Next ...


0

If you want the cell width to be the same as the wider of the PictureBox or Label, and you're placing them both in the same cell by wrapping them in a Panel then set the Panel's AutoSizeMode property to AutoSizeMode.GrowAndShrink, and its AutoSize property to True. If you then do the same thing for the TableLayoutPanel it will make each cell grow or shrink ...


0

By your print screen, it seems that you are docking everyting inside one panel or tab. But that panel is not docked in the Form itself, isn't that the problem? You should always do : GridControl1.DockStyle = DockStyle.Fill; and also dock the container: Panel1.DockStyle = DockStyle.Fill


0

I'd suggest that the reason you're getting the default system settings when exporting to Excel is because of Excel's automatic cell formatting feature, which will look at a cell 's value contents and automatically apply one of its pre-defined formats to it unless a specific format is otherwise specified by the user to override this one. As we can't see ...


0

Correct me if I'm wrong but there's no such thing as a 'PM default time'. There's only the default time value if you don't specify a time at all ("00:00:00"), if you don't specify minutes and seconds ("hh:00:00") or if you don't specify seconds ("hh:mm:00"). If you want PM you need to give it a time to work with. It wouldn't know what you were talking ...


0

You'd need to handle the DataGridView's CellClicked event and extract the ColumnIndex and RowIndex properties from the DataGridViewCellEventArgs parameter it provides. The rest after that should be a simple matter of creating a new row (if necessary) and populating the appropriate values.


0

Use the MouseUp event on the 'Add Row' button in the BindingNavigator instead of the "Click" event. This is becouse the new ROW does not exist in the datagridview until AFTER the click event is completed. Private Sub BindingNavigatorAddNewItem_MouseUp(sender As Object, e As MouseEventArgs) Handles BindingNavigatorAddNewItem.MouseUp 'works with add row ...


2

You'll have to use pinvoke. GetForegroundWindow to get the window in the foreground, GetWindowThreadProcessId to get the ID of the process that owns it. The rest is easy, Process.GetProcessById() to find the process. Visit the pinvoke.net website for the declarations.


0

Here is the code, to solve this problem. I must use "GetForegroundWindow API" function. ' The hWnd of the most recently found window. Private m_LastHwnd As Integer Private Sub tmrGetFgWindow_Tick(ByVal sender As _ System.Object, ByVal e As System.EventArgs) Handles _ tmrGetFgWindow.Tick ' Get the window's handle. Dim fg_hwnd As Long = ...


1

Could you share how your raw request looks like? Also, try modifying your action parameter to be FormDataCollection and see if it works. And also have this kind of check (change it to VB) to catch any model state errors. if (!ModelState.IsValid) { throw new HttpResponseException(Request.CreateErrorResponse(HttpStatusCode.BadRequest, this.ModelState)); } ...


0

Your filter function for the Compute seems to be based off each row in tbActivePlayers, yet you're looping over each row (and thus counting the rows of) a view of unique players. My brain compiler tells me this might well be the source of your logic errors, because you're potentially computing your sum with a filter that's using a single, unique customer ID ...


1

Go into the options and change it to the color of your choice. Tools > Options > Environment > Fonts and Colors > show setting for - text editor.


0

Maybe the problem is UNICODE. By my experience there is no problem with storing CRLF, but there can be problem UNICODE <-> ASCII. Please try Dim cmd as SQLCommand cmd.CommandText = "insert into MyTable(fld) values (N'" + VariableContainingCRLF +"')" cmd.ExecuteNonQuery Or Dim cmd as SQLCommand cmd.CommandText = "insert into MyTable(fld) values ...


2

This is not a good design. The list class itself is not thread safe and there is no const concept as there is in c++ so any user of any thread could attempt to add to your list. A simple solution is to use one the of the thread safe collections like BlockingCollection. If that does not suite you could provide your own custom class with an custom ...


0

If you think it is a Visual Studio extension, then start by disabling all of them and adding them back one at a time. You can also run VS with the command line switched to disable features. Devenv switches


0

I took Nianios example, made a few adjustments and arrived at way to determine if the scroll bar is visible. Thanks! Private Function HScrollBarVisible() As Boolean Dim ctrl As New Control For Each ctrl In DataGridView1.Controls If ctrl.GetType() Is GetType(HScrollBar) Then If ctrl.Visible = True Then Return True ...


2

You can also avoid this with a Using block: Using sw As New System.IO.StreamWriter(filePath, False) For Each line In lines sw.WriteLine(line) Next End Using If you get into the habit of typing "Using" instead of "Dim", then it forces you to think about the "End Using" portion which automatically closes and disposes of ...


0

They give you: Provider SqlOleDb, This means that you should use the OleDb classes (OleDbConnection, OleDbCommand etc.) not the classes in the SqlClient namespace (SqlConnection, SqlCommand etc). If this is true and they do not offer an alternative to a more updated Sql Native Client, I think you have to change your code to use these classes (or change ...


1

You are confusing data storage and data display and editing. I just verified that SQL Server does store CRLF in a VARCHAR field: insert into MyTable (VarcharField) values ('A'+CHAR(13)+'B') , ('A'+CHAR(13)+CHAR(10)+'B') , ('A B') by checking the ASCII() codes of the inserted strings SELECT VarcharField, LEN(VarcharField), , ...


0

Obviously inputs generated on the clientside will not be visible on the serverside, because those are not regenerated during postback lifecycle, so it is not your way to do that. If you really need this dynamic input generation and want to read those values on the serverside then AJAX is your solution. You should create those inputs during AJAX callbacks on ...


1

You need to use OfType instead of Cast. For Each control As HtmlTextArea In myDiv.Controls.OfType(Of HtmlTextArea)() 'If is no longer needed, control will be HtmlTextArea ...do something... Next MSDN for OfType


0

It helps if I use the correct syntax. xe.Attribute("rid").Value is the proper way to grab it.


0

You should delete all occurences of Key. The With statement does not need a reference within the block. E.g.: hcFrutas.YAxis.Add(New YAxisItem() With { _ .title = New Title("Unidades") _ })


0

Shouldn't this: Protected Sub btnSave_Click(sender As Object, e As System.EventArgs) Handles btnSave.Click ScriptManager.RegisterStartupScript(Me, Me.form1.GetType(), "RestoreFilter", _ "<script type=""text/javascript"">MyClose();</script>", False) End Sub Be (see the GetType part): Protected Sub btnSave_Click(sender As Object, e ...


2

In c# using linq. public static Tuple<T, T> MaxAndMin<T>(IEnumerable<T> values) { return new Tuple<T, T>(values.Max(), values.Min()); } Explanation. T is a generic type and IEnumerable will take any class that inherits it. Linq .Max and .Min return the max and min respectively. We return a tuple of the max and min.


0

Arrays and List(Of T) have the ability to use the extension functions .Min and .Max. Then all you need to do is concatenate those together for your return string. Dim myList As New List(Of Integer) myList.Add(1)'etc Dim min As Integer = myList.Min Dim max As Integer = myList.Max


0

You can easely serialize to JSon with DataContractJsonSerializer. This guy has a great example: How can I make DataContractJsonSerializer serialize an object as a string? I converted it to VB Private Function ToJson(Of T)(data As T) As String Dim serializer As New DataContractJsonSerializer(GetType(T)) Using ms As New MemoryStream() ...


0

You are probably looking for the Delegate class ("Delegate" in VB, "delegate" in C#), or one of its subtypes. This page has some examples you will probably find useful, especially near the bottom of the page. Here is a VB example of what you would want to do: Public Class MyClass Private Property _myObject As MyObject = New MyObject With {.Name = ...


1

in C# The parameter type you are looking for Func private string MyMethod(int testParameter, Func<MyClass,string> selector){ return selector(_myObject); } in VB you still want Func the syntax is a little different. Function MyMethod(ByVal testParameter As Integer, ByVal selector as Func(Of MyClass,string) as string return ...


0

You can do that with a delegate of your selector: delegate string SampleDelegate(MyObject obj); private string MyMethod(int testParameter, SampleDelegate selector) { return selector(_myObject); }


0

class MyClass { private MyObject _myObject = new MyObject() { Name = "Test", Code = "T" }; private string MyMethod(int testParameter, Func<MyObject, string> selector) { return selector(_myObject ); } }


5

private string MyMethod(int testParameter, Func<MyObject, string> selector) { return selector(_myObject); } When using Func delegates, the last parameter is the return type and the first N-1 are the argument types. In this case, there is a single MyObject argument to selector and it returns a string. You can invoke it like: string name = ...


0

If you use vb.net you might find this useful: Dim dtbase As New DateTime(Now.Year, 1, 1) Dim t1 As DateTime = dtbase.AddHours(4692.759994) Dim t2 As DateTime = dtbase.AddHours(4692.769281) Dim Interval As TimeSpan = t2 - t1 'the result is 00:00:33.4340000


0

It turns out the arrays need to be stored in reverse order: Function GetBytes(bi As BigInteger,length As Int32) As Byte() Dim bytes() As Byte = bi.ToByteArray If bytes.Length > length Then Dim result(length - 1) As Byte Array.Copy(bytes,result,length) Array.Reverse(result) Return result Else Array.Reverse(bytes) Return bytes ...


0

Here is a tutorial that should help with what you are trying to do here. Pivot Table Excel


0

Right, I've gotten the above code working now. I've moved on to this piece of code: Sub New(ByVal SoundFilePathName As String) mWAVFileName = SoundFilePathName mOpen = OpenWAVStream(mWAVFileName) '******************* MAIN WORK HERE ****************** 'Parse the WAV file and read the If mOpen Then 'Read the ...


0

While SQL server does give some user permissions settings, it sounds like you want control over this from within your app, which I can understand(I'm working on a similar project myself at the moment). There are two ways you can do something like this: On each Form_Load, disable/hide the controls on that form that the currently logged in user is not ...


2

Fields cannot be overridable, but a property can. I'm not sure why the converter created a backing field at all, you can use VB.NET's auto properties (If you are using Visual Studio 2010 or greater). Try this: Imports System.Collections.Generic Imports System.ComponentModel.DataAnnotations Namespace WingtipToys.Models Public Class Category ...


4

In general, when using any class derived from XmlNode, you will need synchronization, as it's documentation explicitly states: Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe. This means you'll need synchronization when appending children, as you've shown. As ...


0

Ran into a similar problem recently. The Trim() doesnt work because the extra lines are already there after doing the split (or using File.ReadAllLines). Here's what worked for me: Dim allText As String = System.IO.File.ReadAllText(filePath) allText = allText.Replace(Chr(13), "") Dim lines As String() = allText.Split(vbLf) Chr(13) is the ...


4

You can make a Property Overridable, but not a Field: ' The property here is fine to be overridable Public Overridable Property Products() As ICollection(Of Product) Get Return m_Products End Get Set m_Products = Value End Set End Property ' The backing field cannot be Private m_Products As ICollection(Of Product) Derived ...


2

My problem was that I did not close the StreamWriter. By adding a StreamWriter.Close to the WriteFile method, I was able to fix the issue.


0

Inside your TextBox1_Leave handler just need to have the following: Private Sub TextBox1_Leave(sender As Object, e As EventArgs) Handles TextBox1.Leave Dim value As String = TextBox1.Text ComboBox1.SelectedValue = value End Sub



Top 50 recent answers are included