First of all, please help me out! I can not take this anymore. I could not find where the error is located. Here is my problem:
I'm trying to update a row via c# winform application. The update query generated from the application is formatted correctly. I tested it in the sql server environment, it worked well. When i run it from the a...
I've been using the Developer Fusion's tool for converting code snippets, and now I'm looking for a quality tool to convert entire projects between those languages, with minimum errors. Is there any good one available?
...
I'm fairly sure this is possible, but what I want to do is have a generic method where I can pass in an object along with a Expression that will tell the method which Property to use in it's logic.
Can anyone get me started on the syntax for something like this?
Essentially what I would like to code is something like:
Dim firstNameMap...
What Xaml is required to display a DataGrid of this dictionary of dictionaries?
Public Property CharIndexedMatrixOfSingle As SortedDictionary(Of Char, SortedDictionary(Of Char, Single))
It's intended to display as bindable, editable (two way) n by n matrix of Singles.
...
I have application with this code:
Module Startup
<STAThread()> _
Public Sub Main()
Try
Application.EnableVisualStyles()
Application.SetCompatibleTextRenderingDefault(False)
InitApp()
Dim login As New LoginForm()
Dim main As New MainForm()
Application.Run(login)
If login.DialogResult...
How can I have a single column resize with the form so that the ListView columns continue to fill the whole form?
...
Trying to set the start time of the Avalon DateTimePicker, but all I get is the current time.
Anyone had any success with this control. FYI, I am stuck using .Net 3.0.
<wf:DateTimePicker x:Name="DatePickerStartTime"
DateTimeSelected="{Binding Path=StartTime,Mode=TwoWay}" > ...
I'm using a matrix DataTable bound to a DataGrid. Cell edits aren't committed to the DataTable until a different row is clicked. How can I commit changes when any cell gets focus?
...
Hello,
I am working on a test project for an RSS reader. I am using Chilkat's module for .NET 3.5. What I am trying to do is this:
For each item in the RSS feed, I want to dynamically create some controls (labels) that contain stuff like the title, the link and the publication date.
The problem is that only the first control comes up ...
Hi, Overflow. I have an application which is supposed to convert a video via DirectShowSource.
I have a checkbox which enables a button called "btnviewcrop" which shows a new form called crp.vb for cropping/shearing pixels off the video.
Now, I have a Panel1 that I want to set as the owner (the video drawing surface) but when I set it t...
Is it possible to execute a command like this?
select * from tbl where col1=somefunction(@param1)
or will the parameter throw off the function? I have been unsuccessful in getting the command to work so far.
Please let me know if this needs any further explanation and thank you in advance!
...
I have a huge website (containing around 5000+) pages. There is a theme functionality in the website where user can choose different colors for their profile. Now i want to use the ASP.net theme feature and put different CSS (for different colors) in the theme folder and in Global.asax i want check the user theme and render appropriate l...
UI is created in VS 2008. I'm using C# .... I need to let the user move/focus between text fields from top to bottom by clicking tab button. How can i do it?
...
For example:
Sub Test()
Dim car as new MyCar
car.chassis.wheel.radius = 15
Console.WriteLine(car.chassis.wheel.radius)
End Sub
So question is. Is it possible to access the property using its string name like
Something("car.chassis.wheel.radius") = 15?
...
Hi,
this is my first question on here.
I'm trying to build a dial control as a custom user control in VB.NET. I'm using VS2008.
so far I have managed to rotate image using graphics.rotatetransform . however, this rotate everything. Now I have a Bitmap for the dial which should stay stable and another Bitmap for the needle which I need...
Hi,
I hope somebody can help me out on this question.
I'm using a SQL database and I'm writing a VB.NET client application. This application is used on multiple computers at the same time. If one of the clients makes an update to the database I would like to have the other clients to be aware of the update.
Has ony one already done th...
Hi guys,
I am here to write a small database application that will be running in desktop (offline mode).
I am using MSAccess 2007 as my database file and trying to write code in vb.net.
I used to write the code vb6 an usually had global variables for storing database connection and executing every query from that.
I am trying to upgr...
I have the mission to make a small game for a school project. Pictures boxes, moved by a timer for walking enemies.If there are around 5 or 6 moving picture boxes at the form, my application get troubles and lags. After I kill some enemies (remove them from the Controls Collection of the Form/Panel) It come back smooth.
I think the loop...
How can I programmatically detect whether a webcam device is plugged in to the PC or not, return 'True' or 'False.
...
Well I am currently trying to get the word/text in between these 2 things
: and !
I tried this
Dim nick As String = String.Empty
Dim p = ":(?<ircnick>.*?)!"
Dim Matches = Regex.Matches(mail, p, RegexOptions.IgnoreCase Or RegexOptions.Singleline)
If Matches IsNot Nothing AndAlso Matches.Count > 0 Then
...