|
Hi experts
Pls someone help me. I need retrieve data from listview to textbox, comboBox, Option Button and etc. Thanks a lot
|
|
|
|
|
What exactly is the problem?
|
|
|
|
|
Problem is. I need retrieve data in listview when I selected item in listview then transfer the data in textbox.
Example
I click the lastname in listview the show the clicked item in textbox
|
|
|
|
|
Use the click event and identify the selected item in the list box
get the text property of the selected item into a variable
update the text property of the textbox with the text from the variable.
Never underestimate the power of human stupidity -
RAH
I'm old. I know stuff - JSOP
|
|
|
|
|
DataGrid with different controls
to excel with cell color in vb.net
I have already tried this code below like this:
Export ASP.NET DataGrid to Excel[^]
But I got some errors below like following these
1.Conversion from type 'ListItem' to type 'String' is not valid.
2.The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>).
|
|
|
|
|
Maybe with some code we can see whats wrong.
anyway: listitem and string are not the same type. listitem.text may help.
Jan
|
|
|
|
|
I have a weird situation where (randomly) a previous Cell value is read by the Excel VBA code.
eg: Cell 1A had a value = Y. It was updated to N. However a subsequent VBA code read the cell value as Y
It has been hard to troubleshoot as this was a random occurrence. I was lucky to catch one today, and upon stepping through the code (using F8) discovered that the correct current value was read during debug!. Re-run the macro without debug mode and the correct value was read.
Its very confusing and I cannot think of anything but an Excel bug.
Have you encountered this issue at all and if so what solution/s have you applied.
Thanks in advance.
|
|
|
|
|
With the amount of people that have been using Excel, it is very unlikely that there's a bug that's that basic. Also, the computer doesn't do stuff "randomly"; that's simply our way of describing stuff when we can't see the pattern.
Is there timing involved in your code? Can you reproduce the error?
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
"If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.
|
|
|
|
|
Male sure you are reading the same value IE CurrentValue, excel has the ability to roll back changes and you may be reading from the wrong/different property.
Never underestimate the power of human stupidity -
RAH
I'm old. I know stuff - JSOP
|
|
|
|
|
No, but you should probably post the relevant code.
Social Media - A platform that makes it easier for the crazies to find each other.
Everyone is born right handed. Only the strongest overcome it.
Fight for left-handed rights and hand equality.
|
|
|
|
|
May I have some help on coding this in VB.net console app
If the user selects the ‘Enter RLE’ option:
a. the user is asked how many lines of RLE compressed data they want to enter
b. the program should check that the number entered is greater than 2 and if it isn’t display a suitable error message and get the user to keep re-entering the number until it is valid
c. if the user entered a valid number, they then enter the compressed data one line at a time until they have entered the specified number of lines
d. once all the compressed data has been entered, the program decompresses the data and displays the ASCII art image
e. the user is returned to the main menu.
|
|
|
|
|
Which of these points are you having troubles with? We won't do all the work for you.
"Five fruits and vegetables a day? What a joke!
Personally, after the third watermelon, I'm full."
|
|
|
|
|
phil.o wrote: We won't do all the work for you. Booo! You're no fun.
Social Media - A platform that makes it easier for the crazies to find each other.
Everyone is born right handed. Only the strongest overcome it.
Fight for left-handed rights and hand equality.
|
|
|
|
|
The forum is for asking questions and getting solutions - NOT ABUSE!
|
|
|
|
|
Member 14721179 wrote: NOT ABUSE! We are not abusing you. All you have said is "somebody do all my work for me." You are the one trying to abuse us.
Social Media - A platform that makes it easier for the crazies to find each other.
Everyone is born right handed. Only the strongest overcome it.
Fight for left-handed rights and hand equality.
|
|
|
|
|
ZurdoDev wrote: Booo! You're no fun. As weird as it can sound, I would like to be able to be fun at any time. I must confess I often fail, though.
"Five fruits and vegetables a day? What a joke!
Personally, after the third watermelon, I'm full."
|
|
|
|
|
asked for few solutions. Didn't ask you to complete the whole code.
|
|
|
|
|
You didn't ask anything at all. You just posted a bunch of "requirements" for an application and left it at that.
You never defined what you meant by "help".
There is nothing in this app that is complicated at all. It's just an input, an if statement, loops, and printing. Every piece of this app would have been covered in your class.
|
|
|
|
|
You basically dumped your requirements but told us nothing about which part you are having troubles with. Remember we know nothing about your current knowledge, we cannot access your mind, so without any issue description your "question" only looks like a 'please do it for me' type of question.
I'm really not trying to be harsch. Maybe reading How to get an answer to your question - Visual Basic Discussion Boards[^] would give you some clues about why we need you to be as specific as possible when you post a question.
"Five fruits and vegetables a day? What a joke!
Personally, after the third watermelon, I'm full."
|
|
|
|
|
Quote: asked for few solutions. Didn't ask you to complete the whole code. Then what are you asking us for?
You've titled your post "cant get Ascii art to display after the RLE file" but haven't shown us any of your code.
So to show you any way of doing this we would have to write (all) the code from scratch. This is not a code writing service. Show us that you have at least tried something and we are usually more than willing to help, but posting angry faces in reply is not a way to gain our good favour
|
|
|
|
|
What did you want from us?
Social Media - A platform that makes it easier for the crazies to find each other.
Everyone is born right handed. Only the strongest overcome it.
Fight for left-handed rights and hand equality.
|
|
|
|
|
I'm trying to create a CustomBorderlessForm and paint myself. I've gotten the basic functionality
to work but have this issue.
I have derived a TestForm from the custom BorderlessForm and when dropping a menustrip
or toolstrip onto the TestForm, these controls dock at the top of the form overlaying
the title area which I draw myself. I have tried a number of solutions with no success
and now I am just trying to do the simplest thing I can think of.
I have created a property on the BorderlessForm to Enable or Disable showing a MenuStrip.
When Enabled on the derived TestForm, I create a MenuStrip and place it on the TesForm at a specific location.
This works but I cannot edit the MenuStrip from the Designer. Below is code for a custom
ParentControlDesigner in which I am trying to EnableDesignMode to allow editing of the MenuStrip.
However it still does not work.
I have tried debugging into BorderlessFormDesigner below but the Designer does not hit the break point within Initialize(). To do this I have setup the project in MyProject to execute a new instance of VS and load the project. Within the new instance of VS I open the TestForm in the Designer but the Designer does not hit the break point. I've tried setting a break point in both the
first and second instance.
I've done this sort of thing before with other projects with success. I'm guessing maybe these
controls to not support this type of functionality.
If this is possible I would appreciate some advice.
Thank you.
Here is the code excluding the BorderlessForm.Designer.vb code.
Imports System.ComponentModel
Imports System.ComponentModel.Design
Imports System.Runtime.CompilerServices
Imports System.Windows.Forms.Design
Imports System.Windows.Forms.Design.Behavior
<ToolboxItem(False)> _
<Designer(GetType(BorderlessForm.BorderlessFormDesigner))> _
Public Class BorderlessForm
Const ConstGridBorderlessTitle As String = "BorderlessForm"
Private _MenuStrip As MenuStrip
<DesignerSerializationVisibility(DesignerSerializationVisibility.Content)> _
Public ReadOnly Property MenuStrip1() As MenuStrip
Get
Return Me._MenuStrip
End Get
End Property
<CategoryAttribute(ConstGridBorderlessTitle), _
EditorBrowsable(EditorBrowsableState.Always), _
DesignerSerializationVisibility(DesignerSerializationVisibility.Visible), _
Browsable(True), _
[ReadOnly](False), _
BindableAttribute(False), _
DefaultValueAttribute(GetType(Boolean), "False"), _
DesignOnly(False), _
DescriptionAttribute("Show/hide MenuStrip.")> _
Public Property EnableMenuStrip() As Boolean
Get
Return (Me._MenuStrip IsNot Nothing)
End Get
Set(ByVal value As Boolean)
If value = True Then
If Me._MenuStrip Is Nothing Then
Me._MenuStrip = New MenuStrip()
Me._MenuStrip.BackColor = Color.LightSteelBlue
Me._MenuStrip.Dock = DockStyle.None
Me._MenuStrip.Location = New System.Drawing.Point(6, 24)
Me._MenuStrip.Name = "BFMenuStrip"
Me._MenuStrip.Size = New System.Drawing.Size(336, 24)
Me._MenuStrip.TabIndex = 0
Me._MenuStrip.Text = "BFMenuStrip"
Me.Controls.Add(Me._MenuStrip)
End If
ElseIf Me._MenuStrip IsNot Nothing AndAlso Me.Controls.Contains(Me._MenuStrip) = True Then
Me.Controls.Remove(Me._MenuStrip)
Me._MenuStrip = Nothing
End If
End Set
End Property
Public Class BorderlessFormDesigner
Inherits System.Windows.Forms.Design.ParentControlDesigner
Private HostControl As BorderlessForm = Nothing
Private ActionUiService As DesignerActionUIService = Nothing
Public Overrides Sub Initialize(ByVal component As System.ComponentModel.IComponent)
MyBase.Initialize(component)
If Me.Control Is BorderlessForm Then
HostControl = DirectCast(component, BorderlessForm)
EnableDesignMode(HostControl.MenuStrip1, "BFMenuStrip")
End If
End Sub
End Class
End Class
modified 30-Jan-20 13:16pm.
|
|
|
|
|
Hi All,
I have a MS Word fillable form template that has many fields I wold like to have an interactive QR Code to incode three fields [Account Number], [Form Name] and [Date] that once the user fill out the form the QR will capture the data entered and generated like pdf forms.
I have downloaded a free QR Code font but unfortunately, it generate many qr for each character not combine to one.
Is there any work around by useing VBA to combine them to one QR?
By the way I found a built-in QR in MS Word 2013 but I do not know how to use it.
Any suggestions would be appreciated.
Thanks in advance.
|
|
|
|
|
I've no idea how many chars fit in a QR-code; but that may be important before you decide to encode three fields.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
"If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.
|
|
|
|
|
As far as I know, you cannot create a valid QR code using only a font.
A QR code is data encoded into a specific visual format. You're going to need some app or extension for Word to create the QR code image and embed it into the Word document.
I don't know of any as I have no need for anything like this.
|
|
|
|