Click here to Skip to main content
15,888,977 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Change mac address by vba Pin
Dave Kreskowiak24-Dec-20 5:21
mveDave Kreskowiak24-Dec-20 5:21 
AnswerRe: Change mac address by vba Pin
Richard MacCutchan23-Dec-20 21:54
mveRichard MacCutchan23-Dec-20 21:54 
AnswerRe: Change mac address by vba Pin
Gerry Schmitz24-Dec-20 5:07
mveGerry Schmitz24-Dec-20 5:07 
QuestionIs there Access VBA method of translating text in a textbox? Pin
Member 1181158314-Dec-20 3:18
Member 1181158314-Dec-20 3:18 
AnswerRe: Is there Access VBA method of translating text in a textbox? Pin
Richard Deeming14-Dec-20 4:02
mveRichard Deeming14-Dec-20 4:02 
GeneralRe: Is there Access VBA method of translating text in a textbox? Pin
Member 1181158314-Dec-20 4:56
Member 1181158314-Dec-20 4:56 
GeneralRe: Is there Access VBA method of translating text in a textbox? Pin
Member 1181158314-Dec-20 11:41
Member 1181158314-Dec-20 11:41 
QuestionVisual Studio RDLC expression editor in the report designer and help with expressions Pin
jkirkerx5-Dec-20 10:26
professionaljkirkerx5-Dec-20 10:26 
I've been using the RDLC design editor in VS 2017+ for a long time, and finally decided to ask about it.
The editor allows for multiple lines, but my expressions are always one liners. I remember in the past trying to use multiple lines but never had any luck. If there a char I need to add at the end of a line to use multiple lines?
I'm beginning to use notepad now to edit this expression.

I need to write this expression to check and make sure that the values are not 0 before I run the equation, but I'm not having any luck. I'm not sure why this expression crashes on 0's when I'm checking, it looks good to me but I'm not sure how to fix it. Maybe I should flip it around. Do the IFF and format the number in the IFF statement.

This expression compares sales in 2017 against sales in 2016, and show the percent of change.
FYTD4 is 4 years back
FYTD3 is 3 years back
On some items they are 0 because they didn't exist in those years.
=FormatNumber(IIF(Fields!FYTD3_A.Value > 0 and Fields!FYTD4_A.Value > 0, ((Fields!FYTD3_A.Value - Fields!FYTD4_A.Value) / Fields!FYTD3_A.Value) * 100, 1), 0) & "%"

I also need to write a color expression as well. It works without the % sign tacked on the previous expression. I searched around for a way to evaluate me.value and strip out the % sign with no luck.
=iif(me.value < 0, "Red", "Green")

Last, I wanted to add a red or green arrow pointing up or down after the % sign. I tried an image, but the table cell seems to only take 1 element like text, or image and not a combination of both.
If it ain't broke don't fix it
Discover my world at jkirkerx.com

AnswerRe: Visual Studio RDLC expression editor in the report designer and help with expressions Pin
jkirkerx5-Dec-20 13:10
professionaljkirkerx5-Dec-20 13:10 
AnswerRe: Visual Studio RDLC expression editor in the report designer and help with expressions [solved] Pin
jkirkerx6-Dec-20 9:35
professionaljkirkerx6-Dec-20 9:35 
QuestionCall a method inside a Task.Run and return the value Pin
Mc_Topaz2-Dec-20 3:03
Mc_Topaz2-Dec-20 3:03 
AnswerRe: Call a method inside a Task.Run and return the value Pin
Richard MacCutchan2-Dec-20 3:23
mveRichard MacCutchan2-Dec-20 3:23 
AnswerRe: Call a method inside a Task.Run and return the value Pin
Gerry Schmitz2-Dec-20 5:23
mveGerry Schmitz2-Dec-20 5:23 
Questionvb.net addin won't run in release mode Pin
JR21230-Nov-20 23:53
JR21230-Nov-20 23:53 
AnswerRe: vb.net addin won't run in release mode Pin
BabyYoda1-Dec-20 5:53
BabyYoda1-Dec-20 5:53 
GeneralRe: vb.net addin won't run in release mode Pin
JR2121-Dec-20 6:22
JR2121-Dec-20 6:22 
QuestionRe: vb.net addin won't run in release mode Pin
Richard MacCutchan1-Dec-20 6:36
mveRichard MacCutchan1-Dec-20 6:36 
QuestionCreate Multi Series Chart in VB.net Pin
Member 1500024122-Nov-20 21:46
Member 1500024122-Nov-20 21:46 
AnswerRe: Create Multi Series Chart in VB.net Pin
Richard Deeming22-Nov-20 22:22
mveRichard Deeming22-Nov-20 22:22 
Questionneed some guidance and advice to build a questionnaire system similar to Google forms in vb.net or c# and sql server Pin
albasheer210019-Nov-20 18:05
albasheer210019-Nov-20 18:05 
AnswerRe: need some guidance and advice to build a questionnaire system similar to Google forms in vb.net or c# and sql server Pin
Richard MacCutchan19-Nov-20 22:14
mveRichard MacCutchan19-Nov-20 22:14 
AnswerRe: need some guidance and advice to build a questionnaire system similar to Google forms in vb.net or c# and sql server Pin
CHill6020-Nov-20 1:59
mveCHill6020-Nov-20 1:59 
QuestionSend a file via a bot telegram vb.net Pin
Member 1496222414-Nov-20 11:33
Member 1496222414-Nov-20 11:33 
AnswerRe: Send a file via a bot telegram vb.net Pin
Dave Kreskowiak14-Nov-20 12:14
mveDave Kreskowiak14-Nov-20 12:14 
QuestionChanging the color of specific text and selecting visual basics word Pin
DaniOM9-Nov-20 1:25
DaniOM9-Nov-20 1:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.