Search:
Type: Posts; User: dday9
Search:
Search took 0.19 seconds; generated 14 minute(s) ago.
-
There is room ambiguity/confusion.
With the current design, the user has to know ahead of time that an item selected in the ComboBox (the unselected item) behaves differently than others.
-
Reducing the width fixed the issue with the data not repeating horizontally.
This article fixed the issue with the data duplicating: https://apps.support.sap.com/sap/support/knowledge/en/1479281
-
I have a Crystal Report with a sub-report. In the sub report I have grouped data in my detail sections where the Format with Multiple Columns property is true and the Printing Direction property is...
-
Honestly, that sounds like bad UI design.
If I were you, I would have a CheckBox above the ComboBox. The CheckBox's Text would be "All Owners". The Enabled property of the ComboBox would be based...
-
You caught the vid?
My wife had it and had very similar symptoms as you, the fatigue lasted for about a month.
Apparently my kids and I had it too, but we were all asymptomatic.
It's nuts...
-
The file is loaded dynamically every time based on the ternary If in the CheckChanged event. If the CheckBox is checked then it loads {partialFilename}_TOP.bmp otherwise it loads...
-
I feel your pain on this. I am currently on a project with similarly bad naming that we only have read access to.
-
Since they are essentially static lookup tables, what I would do is create a strongly typed object to represent the table and then store a collection of those objects in the My namespace during your...
-
In my case, I had to correlate the GF1 and TITLE values to their respective sections in the report's .cs file and then set those section's EnableSuppress to true:
// filter["EnableSuppress"] = [0,...
-
This thread kind of spiraled out of control, but my original restatement (post 3) of Dil's post is more or less correct.
Just a reminder, I am rewriting a VB6 application (originally written VB3...
-
The alphabet can be described pretty easily in a Dictionary(Of Char, String) where the Key would represent the letter and the Value would represent the phonetic equivalent.
Once you have the...
-
You should be able to leverage the SpeechRecognitionEngine's SetRecognitionToWaveFile (documentation) method.
What all have you tried up to this point?
-
To clarify, this was a codebank submission and not a request for code. Also, it may be useful to reference the library you're using as it looks like your code is dependent on the jQuery UI library...
-
You can use a TextBox, just keep in mind that Strings are immutable. Once String is created its data can't be changed, rather what happens is an entirely new String is created when you concatenate a...
-
I would suggest using a ListBox since it is designed to display simple collections.
Take a look at this example with a ListBox and a Button:
Private Sub Button1_Click(sender As Object, e As...
-
It looks like you have put quite a bit of work into this, though I wouldn't agree with creating a new control just to toggle an image.
However, if you want to avoid doing something that has...
-
Here is how I would approach it:
Get the filename from the open file dialog
Store the value in a global variable without the _TOP or _BTM suffix
Load the image by appending the suffix...
-
I would ignore using the concatenation and go with interpolation since you're using VS2017:
Function BaseString() As String
Return $"<iframe
width={WBrowser.Width.ToString()}
...
-
Ah I see, I misunderstood.
-
Just a heads up, I wrapped your code in
tags. They help format your code. For more information you can visit the link in my signature.
-
Ok, so essentially it is a decimal with higher precision for the first four digit?
-
I am trying to convert a piece of VB6 code and running into a Function that I'm not familiar with, the CCur function.
According to the documentation (here) it looks as if the currency data type is...
-
I don't know if you saw or not, but that is what I did in my example.
-
There are a couple of notes:
You have Option Strict turned off
You can use ToString and pass the currency format
You will need to leverage the ValueChanged event of the NumericUpDown
...
-
Well this Shaggy Hiker fellow and his accomplice wes4dbt are a just a few.
-
My original submission is 6.5 years old. I figured I would rewrite it with how I would do it now.
This submission uses ES6 JavaScript and sets text rather than leveraging a canvas.
<!DOCTYPE...
-
I have noticed some unusual hostilities lately.
-
I've done that too :blush:
-
Same here, only with typescript which is basically if JavaScript and C# had a baby. It really has been a while since I've done any VB development.
-
-
Because you have several controls that you're wanting to toggle the visibility on, I would suggest storing a Dictionary where the Key would represent the item in the ComboBox and the Value would...
-
End did it. Don't know why I didn't think of it.
-
It has been a while since I've done any WinForm applications and I'm running into a slight issue.
I have the following in the constructor of my frmMain:
Sub New()
Using loginForm = New...
-
Personally I don't believe in intellectual property laws, but if I am working with someone who wants to avoid potential copyright issues (for images) I will:
Go to www.bing.com
Bring up the...
-
Mais bruh, put that up in the game demos! https://www.vbforums.com/forumdisplay.php?63-Game-Demos
-
Quick side note, you should never store password in an insecure manner like what you're doing, but I get this is for class.
What I would do is loop until you run out of lines or until you pass...
-
I would highly recommend you going through my tutorial that I provide for free. The link can be found in my signature under VbLessons.
I put a lot of effort into it and I genuinely feel like you...
-
There shouldn't be any difference between the two. According to the documentation (here), it specifically addresses your situation:
-
You should really read the documentation on MSDN.
https://docs.microsoft.com/en-us/dotnet/visual-basic/programming-guide/program-structure/references-and-the-imports-statement
Reading the...
-
I'm curious, how did WriteAllText not suffice?
|
Click Here to Expand Forum to Full Width
|