Determining If Numbers Are Evenly Divisible

May 30, 2012

In my order program, I need to determine if the quantity ordered is full boxes.For example - all of our parts/products have different box quantities, and when a customer orders a certain quantity, I want it to do nothing when I type in the quantity IF the order quantity is even boxes, If it is not even boxes, I want a pop up form with three radio buttons to come up. The three radio buttons will have the next higher even box quantity, the next lower box quantity, and to keep the current quantity and apply a broken box charge. I have this pop-up form done except for determining if the order quantity is an even number of boxes, and then determining the next higher and next lower.

Just to clarify - let's say a customer orders a part that has 60 pieces per box. If he orders 180 pieces, nothing happens and you can continue to put the order on. If he orders 200 pieces, a pop-up form with 3 selections - "keep current quantity and apply broken box charge", or "Change Quantity to 240", or "Change Quantity to 180" comes up.

View 5 Replies


ADVERTISEMENT

Check If A Number Is Evenly Divisible By Another?

Jan 20, 2012

I was wondering what the fastest way is to check for divisibility in VB.NET.I tried the following two functions, but I feel as if there are more efficient techniques.

Function isDivisible(x As Integer, d As Integer) As Boolean
Return Math.floor(x / d) = x / d
End Function

Another one I came up with:

Function isDivisible(x As Integer, d As Integer) As Boolean
Dim v = x / d
Dim w As Integer = v
Return v = w
End Function

View 4 Replies

Fast Way To Check If A Number Is Evenly Divisible By Another?

Feb 13, 2011

I was wondering what the fastest way is to check for divisibility in VB.NET.I tried the following two functions, but I feel as if there are more efficient techniques.Function isDivisible(x As Integer, d As Integer) As Boolean Return Math.floor(x / d) = x / d End Function

Another one I came up with:

[code]...

Is this a more practical way?

View 3 Replies

Finding The Smallest Number Evenly Divisible By 1-20

May 14, 2009

i just started to learn mod and i was having trouble with this. heres my code:

[Code]...

View 9 Replies

Count And Add All Numbers That Are Divisible By 2,3?

Apr 13, 2011

i need to count and add all numbers that are divisible by 2,3 and 5 inclusively ( the answer is 30, 60, 90 sum is 180). I tried running a loop and a true false isnumber. what am i doing wrong? all i have is two textboxes and a button Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

[Code]...

View 6 Replies

Drawing Dotted Path Lines With Evenly Spaced Dots?

Apr 22, 2012

I have a problem drawing dotted path lines, with evenly spaced dots: I want to be able to draw evenly spaced dots along a path line using points in an array, My issue is not with drawing the path line, with dotted lines, this is easy, but with the spacing of the dots at the start and end of the path line.

In the example I have created, I create a square with 4 points and draw a dotted path.The path starts at the top left corner and finishes back at the top left corner, the dots are evenly placed along the path, except the final dots at the end of the path. (Sometimes the dots are even and other times they are not even).The shapes I want to draw can be any size and any shape, but I have used a square in this example to show the problem I have.I have also attached two pictures showing the dotted path line, 1 with even spaced dots at the start / End and another showing the problem I want to resolve, with not evenly spaced dots at the start / end.The only difference between the two is the point values.

View 1 Replies

Check If X Is Divisible By 5?

Mar 30, 2009

I'm trying to check if when x is divisible by 5 then it makes y true.

basically: if x / 5 = "positive integer" then y = true.....

how do you check if a number is divisible by 5?

View 7 Replies

Get The Nearest Number Divisible By 10?

Jul 6, 2009

For example, how would I get the # "220" from the number "229". Or the number "300" from "309"? The only way I've found to do this is using string stuff, but I'm afraid of the overhead for strings?

View 15 Replies

VB Loop Minimum Sum And Divisible?

Nov 19, 2009

I have run into a snag in my loop program. I was able to figure out the maxium sum and average of the sum. But am not able to figure out how to:

1) List the minimum value

2) List the sum of the numers divisible by 5.

These are the numbers.text displayed:

5
15
6

[Code].....

View 1 Replies

Converting Some Php Code That Tries To Get A String To A Length That Is Divisible By A Certain Number?

Dec 10, 2009

I'm converting some php code that tries to get a string to a length that is divisible by a certain number, say 10. To do so it appends "�" to the string to make up for the difference. In other words, it does something like:

dim difference as integer = 10 - (str.Length Mod 10)
for i as integer = 1 to difference
str += "�"
next

But the problem for me is that "�", which is the ascii code for the null character, is two strings and I don't believe that when VB loops over resultant string it will view that as one character. what could I append the string with to retain the expected behavior?

View 1 Replies

Determining OS And SP?

Jul 24, 2009

I am writing a simple program to perform a task at work. It is an update application that will allow end users to update software themselves.I have come up against a problem though. In order to fully complete the installation, the latest service packs have to be installed. The machines are either running XP or 2000 and need updating to the latest service packs.The problem is I cannot find any code that will let me determine the service pack, all I have is:

HTML
MsgBox("Computer's operating system version: " & _
My.Computer.Info.OSVersion)

This finds the OS version, but I don't seem to be able to determine the SP from it. What I need to do is make a piece of code that will find the OS and SP, and then download the latest SP.The service packs are as follows: 2000 needs SP4 and Rollup 1 and XP needs SP3. I value will need to be returned and then stored to create and IF statemenet, but I am stumped on how to find the SP.

View 3 Replies

Asp.net - Best Way Of Determining That Website Is Being Run ?

Dec 4, 2009

In my code behind I'd like to be able to tell that I'm running my web site project in Visual Studio (either Debug or Release).I was considering testing for "localhost" but that's not perfect because we could be testing it locally on the server.

View 3 Replies

Communications :: Determining IP Address

Aug 5, 2009

Is there any easy way to determine the IP address for the computer that an app is running on. I looked through the System.Net namespace and didn't see anything of the sort.

Basically, I want to display the IP address to the user, instead of walking them through how to do an "ipconfig". They then can put that IP address into another app, so the one app can talk to the other via UDP.

View 2 Replies

Determining Changes Made To A Dataset?

Jun 2, 2011

I have a dataset that is filled by a tableadapter and what I'm trying to do is to figure out how to loop through all of the rows in my dataset and determine when someone hasedited/changed the row and then

View 2 Replies

Determining Country Or Language Using Url?

Sep 3, 2010

I have written simple code to determine country location using the suffix on the url eg..cn, .se, .br etc. even if its possible to determine country or location using urls that end in .com or .net? I was just reading up on something and found online apps that can determine location/country from the ip so how would I determine the ip or look it up using the url? can I do this in .net?

OK

So I have the following code and I get an exception when the url is invalid or faulty, can anyone help me to catch the error and add the url to another list and continue with my loop.

Public Sub getIpAddress(ByVal querylist As ArrayList)
Dim IPList As New ArrayList
Dim badList As New ArrayList[code].....

View 4 Replies

Determining Double_Click Event?

Sep 29, 2011

My current situation is a brain teaser for me, and I wish I could provide code that I have tried but quite frankly - i have no idea how to even start. So this is my situation; I have a tab control, this tab control holds the names of Departments for a Lay-Away manager. The user has the option to click a static tab, "New.." and add a new department. When that happens, the new tab controls name is added to the settings, and a new list-view is created, and named "lst & DepartmentName". The problem is, I have no way of knowing when the Double_Click event of the this list that may, or may not exist happens. I have a method of determining which list is currently active, working with a timer to set a certain value the name of the list, sort of like

Dim lst = GetAllList(TabControl1.SelectedTab)
cList = lst.Item(0)

Considering there is only one listview per tab, it will always be 0. So, question is - How could I determine when that particular listviews Double_Click event happens ? Then I will use it to call a certain Button_Click event?

View 5 Replies

Determining If USB Files Is Compromised?

Mar 2, 2012

Through ACL I could restrict access to a directory in an NTFS-Formatted USB, what I want to do now is to be able to check if any virus/malware tried to infect my folder so I will know if it is safe to unlock the folder in that machine, is there any way in .Net that I can do this?

View 1 Replies

Determining Point Chosen?

Sep 8, 2010

How can I determine which box a user has chosen from the points array I stored it in? EX:

Points.add(box1)

Points.add(box2)

Points.add(box3)

User selects box2

How can I determine from the points array(x) which box he chose?

View 19 Replies

Determining The Active Window Name Or Id

May 1, 2011

im using VB 2008 is it possible to get active window name or id? for example i have active notepad window, now how i can get it's process name or process ?id(better is process id)

View 1 Replies

Determining The Disk Space?

Sep 5, 2009

Im creating a program that auto starts with my computer. On this program im adding a section that states how much space i have left on the C: drive. So far i have 2 labels and a progress bar. in the top level i have the name of what the progress bar is, and the second below the progress bar states the amount such as this "430GB/740GB". i also want the progress bar to state the percent of how full this drive is. how can i do the following:

Determine the amount of drive space on C:
Determine the amount of free space on C:
Make free space a percent of all space. such as "30% full"

View 4 Replies

Determining Variable Types?

Aug 18, 2009

I'm converted a VB6 project to vb.net using the convert tool.Now i have a few declares that included passing variables as "as any" which vb.net doesn't like and it seems you have to declare them as there correct type so i have the following,So i suppose , Long and Long

Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory"(ByRef Destination As Any, ByRef Source As Any, ByVal Length As Integer)
and

Long again?

Private Declare Function CallNextHookEx Lib "user32" (ByVal hHook As Integer, ByVal nCode As Integer, ByVal wParam As Integer, ByRef lParam As Any) As Integer

View 8 Replies

Determining What Type Of .NET Application?

Jan 17, 2012

I'm just asking for suggestions for a secure way of determining what type of application my VB.NET application will load as. For example, I intend to distribute my application to internal and external customers. There are differences in features etc. for internal and external customers. What secure way can I tell the application to load as 'internal' or 'external'? I want to avoid the command line (passing in an argument) or the application settings.

View 3 Replies

Determining Whether A String Is A Word Or Not?

Apr 1, 2009

I've got this problem where I'm supposed to be determining whether a string is a word or not. not exactly.Its supposed to just make sure each string has at least 1 vowel, and each vowel is surrounded by consonants. If it meets those requirements it'll be accepted, if not it'll be rejected, but I've already got that part figured out. I think I know a horrible way to do it, that would take a very long time, but I'm thinking there has to be a much easier way..

[Code]...

View 11 Replies

VS 2008 Determining Architecture Of OS (x86 Or X64)?

Nov 1, 2009

When trying to determine the Architecture of an OS, I ran across IntPtr.From reading the documentation, I saw this: Quote:The IntPtr type is designed to be an integer whose size is platform-specific. That is, an instance of this type is expected to be 32-bits on 32-bit hardware and operating systems, and 64-bits on 64-bit hardware and operating systems.

Since the size of IntPtr is intended to be the size of the architecture, would it be feasible to test the size and determine the OS by that? Or is there a better way?

I was thinking there might also be a way via WMI, but I don't want to use that for compatibility reason.

View 23 Replies

[2008]Determining Age From DOB And Date.Now

Jan 6, 2009

I am looking for a method to determine an applicants age from a masked text box(date). Below is what I am using but I wnat to utilize vb.net code instead of inherited datediff from VB6, also this method rounds off the age e.g 44.9 to 45 which is not acceptable.

Below is what I am currently using, looking for a better way.

Private _age As Int32
Private _SixQvar As Int32
'This determines the age of the client and sets the value of _SixQvar

[Code]....

View 14 Replies

Determining A File Size After RAR Compression?

Oct 16, 2010

I'm willing to create a program that will determine the size of a file imported in OpenFileDialog After a RAR Compression. I'm not sure what's the ratio of the rar compression,

View 1 Replies

Compiling Stub & Determining Variables?

Sep 12, 2009

I have a program which builds a child program during runtime, it all runs fine but I want I way of determining which computer it came from. It is private and when I give it to someone I get their volume serial number and I can identify who it is from that. Once they build their program which can be public so the same method won't work I want it to know it came from person.. pseudo code ex

BEGIN
Determine Person
Build Program
END

[Code]....

View 1 Replies

Determining A SQL Server Identity Column Name?

Jul 22, 2009

I'm trying to write some generic code in VB.NET that determines whether or not a SQL server database table contains an identity column and, if so, to return the name of that column.I'm working in Visual Basic 2008 Express and have created a SQL database, "MyDatabase" with 1 table called "MyTable". Within that table, I've got 3 columns, "ID", "Column1" and "Column2". I know, I know... inventive names. Under column properties in the Database Explorer, I've set the "ID" column "Identity Specification" to "yes" and have set the "Is Identity" value to "yes"

View 3 Replies

Determining Active Radiobutton In A Panel?

Nov 24, 2010

I am using panel controls to group radio buttons.

I have three panels with the following radio buttons:

panel 1: radio buttons 1, 2, 3
panel 2: radio buttons 4, 5, 6
panel 3: radio buttons 7, 8, 9

I want to find out which one is the currently active radio button in each panel. How would I go about doing that?

View 2 Replies

Determining Daylight Savings Time?

Mar 13, 2011

I have a simple app that just shows the current time for specific locations around the world. I need to have it adjust for daylight savings time. I *THOUGHT* I'd already coded this but....

I thought I would use "Today.IsDaylightSavingTime()" and add 1 hour to the clocks. It isn't working?

If Today.IsDaylightSavingTime() Then
HawaiiOffset = HawaiiOffset + 1
PacificOffset = PacificOffset + 1

[Code]....

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved