Search:
Type: Posts; User: Delaney
Search:
Search took 0.02 seconds.
-
on this line :
you set the font by a variable named "font".
You can set your own :
dim font_new as New Font(String, Single, FontStyle) ' example Font(FontFamily.GenericSansSerif, 12.0F,...
-
Why "with very strange hair" ?:eek:
-
Office development would be the one, they are a few threads about outlook
https://www.vbforums.com/forumdisplay.php?37-Office-Development
-
TabControl1.TabPages(x).Controls("ComboBox" & m).text
where x is the index of the tabpage
-
I sent him a PM, waiting for his answer...
-
that should explain why I have the difference on both VS2010. I'll check, thanks
-
I have that with VB.net 2010 express at work but with the same VB.net 2010 express at home I have the solution and location in dialog. I have to check the exact version of each.
-
in the web browser control, do you have 2 controls to manage both HTML and PDF, one for the HTML and one for the PDF?
edit : after a bit of research, it seems that the web-browser control doesn't...
-
you need to go in the build menu, Configuration Manager or something like that (my version is in french and I don't know how it is written in English),
it's open a window, you can create a new...
-
Ok. Thank you for the explanation.
-
I don't know what's happened with the link. I corrected it
-
As you set the legends outside the chartarea, it is possible that they take both the same default position on the chart.
Try MyChart.Legends(titolo).IsDockedInsideChartArea = true just to verify...
-
I fail to see what you mean here
if I do this
dim text as string
text= "test 1"
text= "test 2"
the value of text will change in the same way than that
dim text as integer
text= 1
-
On my last project (vs2017) I goes from debug version to release to debug and the break point didn't work anymore in the last debug version. I had to deselect manually "activate only my code" and...
-
I tested your code : I put the result in a label and I get the expected result :
<iframe
width=227
height=162
frameborder="0" style="border:0"
but if I put a break to debug and see the...
-
What is strange is: I have recreated the form with the code of the OP, put 50 labels at runtime, I don't have the double buffering set to true, I am on a old windows 7, 32Bits, no great graphic card...
-
Each time you change the contains of a control, the default paint event is called (even if it is empty and if you didn't set it as all the event exist), the more controls you have, the more paint...
-
By the way, do you need the 20 to 50 labels ? maybe you can replace them by one listbox.
-
On windows 7, VS2010, I don't have the flickering. (I put a list box with 50 lines)
What controls do you have in it ?
-
these maybe :
https://www.vox.com/policy-and-politics/22217696/republicans-trump-capitol-hill-storming-mob-responsible
https://www.aft.org/hc/fall2020/levitsky_ziblatt
-
Hello,
To achieve that you need to create a second chartarea with the second serie then you hide everything but the y axis and you shift the position of the chart and the inner position of the...
-
You can use this dll (even if it is written in c#, you can use it with vb.net), you will have a treeview control with multiselect : http://www.arstdesign.com/articles/treeviewms.html
Just put the...
-
Thanks for the tips, I will try that.
-
For the moment I can't. Problem of copyright of the different pictures I used. I have to solve that before posting.
-
After changing all my concerned expressions with "isnot", every is working as expected now. So the reason should has been somewhere else which is strange as at the time of the issue, I just had to...
-
Thanks for your answers, I will check again tonight and let you know. And I'll post a more complete code if I still have the issue.
-
In my last project (VS 2017 /FW 4.5), I had to change
if MyObject isnot nothing then ..
into
if not (MyObject is nothing) then...
to make it work (i.e detect...
-
:thumb: Thanks for this. I am actually working on a application with a treeview and I will surely need something like that at some point.
-
As my question was a bit of topic, I remove it and I created a specific thread for it : https://www.vbforums.com/showthread.php?890012
-
I had the same interrogation mostly because you wrote byval in the new sub :
ByVal data As DataRow
But I think the mistake in my understanding was to mix the object datarow by itself and the...
-
Yep, I just experienced that a few days ago. Took me sometimes until I understand that my loop took only 8ms which was less that the 15ms recommended by the documentation...
-
in the property window of the project, the first panel is application, you have the choice of the opening form, you can choose main() if it is in a module
note that you must disable the...
-
-
you should also put
Dim generator As New Random
outside the function.
-
the attachement didn't work.
The main sub, to work, must be in a module and you must specify in the project property window that your start with the main sub
-
Console.WriteLine("something" or any variable) will write "something" or the value of the variable (must be a string) in the Immediate window/output window in the IDE
...
-
-
tested on VS 2017, this code works : I put it directly in a button click event and I also tested it by calling the sub main in a button click event (see code thereafter).
Imports System.IO...
-
Have a look here
https://stackoverflow.com/questions/6008226/are-there-any-good-and-free-devexpress-data-grid-alternatives-for-winforms
while the post is old, the links are still accessible
-
Well, this week, instead of having the update of flash, Adobe proposed me to uninstall flash. For the disability, they may just need not to update it . If your flash version is obsolete, Firefox will...
|
Click Here to Expand Forum to Full Width
|