Finding Erlang B Code?

Dec 6, 2006

I've been looking for a code example that would run through the Erlang B formula, but the only thing I can find are commercial packages.

View 8 Replies


ADVERTISEMENT

Call Center (Erlang C) Plugin For MS Access?

Jul 2, 2009

I'm trying to build a call center application in MS Access but can't seem to find the necessary Erlang C plugins/DLLs.

View 3 Replies

Finding A Value Of Line Of Code?

Jun 22, 2010

Me.pass = Conversions.ToString(CDbl((((Conversions.ToDouble((4 & 3)) - Conversions.ToDouble(4)) + (Conversions.ToDouble(2) * Conversions.ToDouble(1))) / Conversions.ToDouble(2))))

[code].....

View 1 Replies

Finding The Code Snippet?

Jun 23, 2010

I am working on a little small 10 question quiz. The quiz is just for fun for a work thing I'm doing. I'm using VB.net. I'd like to put in one of the questions something like "what's your favorite baseball team?" Then list 3 radio buttons for 3 possible answers. But I'd like to make 2 of the radio buttons move away when a person tries to mouse over it to click on it. So only the answer I want them to use would be possible. I can creat it all but the code to make the raido buttons move when moused over. I've been searching but having trouble finding anything on how to do this.

I don't have my actual quiz code in front of me. But can post the form code for that question later tonight when I get home if needed. But the form is very basic. just has the question in a lable, Then the 3 answers below it as radio buttons. I have a next button that goes to the next form and closes the previous one, and an exit button that closes down the whole application.

View 10 Replies

Finding A Control Within A FormView From Code-behind?

Jun 24, 2009

Here the code behind... I'm trying to retrieve this control so I can add items to the drop down list (I'm retrieving the Role Groups to add to the drop down list in the code-behind)

Protected Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim DDRoleGroups As DropDownList

[code].....

View 2 Replies

Finding The Char Code Of A Character?

Jul 13, 2011

I am trying to write a VB function to strip unwanted characters from a string. It is for generating a 'clean' url from data that has been inputted into a CMS. Someone has copied and pasted from a Word document and so there appears to be an mdash or ndash in the product title. This results in ─ appearing instead of -

I have tried a Replace(text, Chr(196), Chr(45)) but it isn't working so it can't be 196. Is there a tool or something where I can copy this character and paste it into the tool and it will tell me what char code it is?

View 2 Replies

Finding The Webpage Manipulation Code?

Jan 21, 2012

I have a vb.net / ado.net application for distributors that queries a sql server db, converts the records to tab delimited text format file. After building the file, the user goes to the website of the manufacturer, logs in to a private area and uploads the txt file.

I would like to add a function to my vb.net code that would launch a browser in a form, load the manufacturer's login screen, load the user id, password and then let the user log in by clicking the login button. Then when the next page loads, I'd like to have the text file I just created pop into the web page text box for file name, choose a couple of radio button options properly and then let the user click the submit button.

View 3 Replies

RegEx - Finding / Returning A Code

Jul 10, 2009

I must admit it's been a few years since my RegEx class and since then, I have done little with them. So I turn to the brain power of SO. . . I have an Excel spreadsheet (2007) with some data. I want to search one of the columns for a pattern (here's the RegEx part). When I find a match I want to copy a portion of the found match to another column in the same row.

[Code]...

View 3 Replies

C# - Finding RTF Code Associated With Selected Text In RichTextBox

Mar 7, 2011

I am using winform RichTextBox and I wonder if we can find the corresponding rtf code (or at least whereabouts of it) when selecting text?

View 1 Replies

Code For Finding Factorials - Overflow Exception ?

Mar 30, 2011

I have the following code for finding factorials:

Private Shared Function Factorial(ByVal Number As Long) As Long
If Number = 0 Then
Return 1
Else
Return Number * Factorial(Number - 1)
End If
End Function

It usually results in an overflow. It only works if I start with something small like 4. I have to work with starting numbers such as 30-60. I thought changing the value type to LONG would prevent this problem. This is VB.net just for reference.

View 3 Replies

Finding And Closing Modal Dialogs In Code

Aug 21, 2005

There may be times when it would be useful for your code to be able to find and close modal dialogs displayed by an application. Perhaps you do not want to have to wait indefinitely for your user's input, or are using the COM Web browser control to automatically navigate Web page and would like to interactively close alert messages that pop up.Digging into our Interop toolbox, we find that this is a relatively simple process using a few core Win32API calls. Starting with the handle of the main window associated with the dialog (this is the form from which the messagebox was shown, whether from your code or from a Web page hosted in a Web browser control on the form), the GetWindow function can be used to retrieve a handle to a dialog windows (called a popup by the Windows API) being displayed (if any). The same function can then be used to enumerate the child windows of the dialog to find a button on the dialog to click in order to close it, and the SendMessage API function can be used to simulate that click, effectlvely closing the dialog window.

NOTE: At the top of whatever code file you put this code, be sure to include the following line (thanks poiygon for pointing this out):Code:Imports System.Runtime.InteropServices this allows for the shortcuts to the DllImport attributes.[code]This sample can be easily modified to close a dialog in another application (by using the MainWindowHandle of that application in the LookForAndCloseIEPopup function, instead of "Me.Handle") or to close any other type of modal dialog message being displayed to your user.

View 10 Replies

Finding URLS In A HTML Source Code?

Feb 20, 2009

I need to find .MP3 format URLS in a HTML source code.So how could i do that?Lets say i have:

Dim wcClient As New System.Net.WebClient
Dim data As System.IO.Stream = wcClient.OpenRead(inbox.ToString)
Dim reader As System.IO.StreamReader = New System.IO.StreamReader(data)
reader = reader.ReadToEnd()
reader.Close()

so how could i find all the .MP3 urls which are in the source code?

I've found some examples using RegEx but im not really sure how to use the RegEx pattern to find MP3 urls in the source code.

View 15 Replies

Finding A Sample Code For .net Dynamic Dashboard Applications?

Aug 15, 2011

I am looking for sample code for vb.net Dynamic Dashboard applications? i want the code in vb.net which will be my front end and sql will be my back end for database?

View 2 Replies

VS 2008 Finding The Reason A Form Is Closing (By X Button , By Code Etc)?

Mar 5, 2011

Is there any way I can find the exact reason a form is closing ? To be more specific , I'd like to find when a form is closing :1) because the user pressed the X button on the upper right corner2) due to code (Me.Close , MyForm.Close etc)I know I can use the FormClosing event and use this code :If e.CloseReason = CloseReason.UserClosing Thenhowever it seems that the CloseReason.UserClosing catches both cases (closed by te X button or by code) . So , is there any way I can find exactly the reason a form is closing ?Back in VB6 , the correspondent UnloadMode variable of the Form_Unload event could be "vbFormCode" which indicated specifically that the form was closed by code

View 4 Replies

Asp.net - Finding A .net Code To Add Existing Buttons/text Boxes/drop Down Lists, Etc To A Container Or Holder?

Jun 17, 2012

I'm using vb.net. Basically, I have a drop down list, text box and a submit button. You choose a movie director from a drop down list, then type in a movie, click button and it adds the data to my database.There's another button which hides/shows drop down list, text box and submit button using Visible = True and Visible = False, but what I don't like about it is when it hides the things I said before, it leaves some white/empty space like if they are still there, but not visible.Is there anyway to put some kind of holder/container and place a button which when clicked could add my drop down list, text box and submit buttons to that place?

View 1 Replies

VS 2008 Finding A Code That'll Work With An "Application Layout" In VB?

Jan 10, 2010

I'm looking for a code that'll work with an "Application layout" in VB that when you press the "Send" button, the fields will be emailed to your email.OR A basic program preset up that i can use..

View 4 Replies

Finding Simple .net Code To Upload And Image From Client To Web Form Image Control And Save It To Sql Express Database?

Feb 15, 2011

find a current and simple way to do this. I'm using VWD Express 2008 and SQL Express 2008.I'm able to get the client's path to the image file using an asp:FileUpload control on the web form.How do I upload the client's image file and display it in the web form's image control?How do I save it to the sqlserver? The image table is already set up with a "Image" data type column. Can the image be saved to the database as simply as other data types?

View 3 Replies

Code To Load The Already Compiled Yahoo Files To Execute The Code Again, Without Having To Recompile The Code?

Dec 8, 2011

I have some code to execute code at runtime...

Here is the main

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Try
If TextBox1.Text.Trim <> "" Then
If TextBox2.Text.Trim <> "" Then

[code]....

When the button is pressed, it all works and the following files are created: yahoo.dll and yahoo.pdb My question is this: What is the code to load the already compiled yahoo files to execute the code again, without having to recompile the code?

View 1 Replies

Finding Age From DOB

Mar 16, 2011

My EmpTable is in SQLserver & Data entry using Visual Basic 2010 "List format" on Windows form.Sir my requirement, if I enter (Date of Birth) in DOB column the Age should display on the same form in Textbox.

View 3 Replies

.net - Finding Out The Datetime Value

Jun 7, 2011

In my vb.net winform application, I am moving the file from one folder to another. I need to store the datetimevalue when the transfer has been done. Later I need to show this DateTime value in my Grid. Here is the code i have written, but not able to store the datetime value.

[Code]...

View 2 Replies

Finding A Control In .net

Mar 3, 2010

In vb.net I have control named checkbox1 that I can see at dropdown menu in properties tab. but in designer I am not able to locate it... Also when I am selecting CheckBox1 from properties' dropdown menu, no checkbox in designer gets highlighted.... How to find that control in designer?

View 3 Replies

Finding A Decode Key

Jul 19, 2011

I have to provide a client with a method to retrieve data from an Audiometer. The equipment is discontinued, but they have six of these and are used every work day. Using port monitoring and the DUMP command on the peripheral I was able to read the data and save to file. Now my challenge is decoding each line. It appears that only a section of the string is not in plain values.I added the pipe separators for clarity. I have determined those columns are: EMPID | DateTime | TechID | Results | ResultType = Test.[code]

View 8 Replies

Finding A VB, Or C# Or C++ Dll Injector ?

Aug 26, 2009

I have been finding a VB, or C# or C++ Dll injector for a long time. Ive decided to make one. So in VB i went to toolbar and found "Process" and i didnt know what to do after. how to make one (dont post code). Ive tried using the "GetProcessByID" thing but dont work.

So far what i did:

If Process.Start("Engine.exe") Then

End If

Also how do u make it inject the "DLL"?

View 4 Replies

Finding A Winpcap For .net?

Jan 25, 2011

Is there a Winpcap for Visual Basic .net?

View 8 Replies

Finding An Image?

Aug 7, 2010

I'm looking to take a screen shot with my program and try to find an image inside of it. Is this possible?In other words, I am trying to find an image inside of a larger image. It would be great if it could be a screen shot of just the webbrowser form.

View 18 Replies

Finding And Opening Wow.exe With VB?

Apr 30, 2009

I can't find out how to find and open the program wow.exe using VB.

I can get it to open mine but it can't open other peoples they get errors when they try, I have xp and the Vista and other people can't get it to open theirs so I need to know how to find the file then open it.

The code I'm using is this:

Private Sub Play_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Play.Click
Dim installpath As String = String.Empty

[Code].....

View 7 Replies

Finding The Max & Min Of An Array

May 10, 2009

I have some code that generates 15 random numbers between 1 and 100 and prints the 15 numbers in a listbox. I want to be able to find the max and min numbers in that list. How would I go about finding those values? I'm new to VB so a solution involving basic string/array manipulation would be preferred.

View 2 Replies

Finding The Name Of The First Worksheet

May 27, 2010

I am trying to find the name of the first worksheet in excel. I can get the list of sheets, but i need to know which on is the first one in the workbook. using vs 2010 and office 2007

View 1 Replies

Finding Where App Is Running From?

Aug 22, 2011

under VB6 I used to use the code app.path, what is it under VS2008

When I write the final code I want my program to install the exe and support files in the same directory/folder

In the software I want to be able to refer to these support files when needed
Regards Princy558

View 4 Replies

Page_PreRender Finding Div By Id (asp.net VB)

Sep 1, 2011

I am trying to run some code on Page_PreRender but only want it to run on hyperlinks within a certain DIV. What the code does is change the colour of a hyperlink if the NavigateUrl = the URL of the page the user is on. I have some code that works but it changes the colour of every link on the page that matches when I only want it to happen within a certain div.

[Code]...

View 1 Replies







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