Recreate A Program That GeekSquad Uses Called The MRI For A Friend?

Jun 10, 2011

I'm playing around with VB.NET once again since college and I'm trying to recreate a program that GeekSquad uses called the MRI for a friend.Upon doing so, I have run into a few snags. The must present one is once I publish my application to a particular spot that also includes already setup folders with portable apps setup in them. I want to use Process.Start("App Path") where App Path is the drive letter of where the Custom Program exe is located and calling file Test1.exe in the test1 folder in the root.

View 3 Replies


ADVERTISEMENT

Simulate C++ Friend In C# And Program?

Dec 20, 2010

I can think of the following tricks:

Read only wrapper - like ReadOnlyCollection. The friend keeps the pointer to the modifiable object, while everyone else can access only the wrapper.Write delegate - the friend gives the constructor of the object a reference to a delegate as one of the parameters, the constructor fills it with an address to a private method that can be used to modify the object.Reflection - obviously a bad idea. Included for completeness.Multiple assemblies - put your friends together in a separate assembly and set your modifier methods internal.Expose the modifiable object, but add comments to modifier methods "This is an infrastructure method - don't call it!"Nested classes.[code]...

View 2 Replies

Use Friend Functions In Program?

Jun 1, 2010

As far as c/c++ is concerned ,friend functions are defined outside the classes and they are accessed without object name.But in vb.net how can i create friend functions like that ? Is the concept same here or its bit different than what was in c/c++ ?

View 11 Replies

How To Give My Program To A Friend - By Email Or Via The Internet

Sep 1, 2010

First of all let me say that while I was knowledgeable enough to create my program using VB-10 express I am by no means fluent in 'programming' speak .. so if you choose to help me please don't use technical jargon.. just explain as if you are talking to a 6 year old ..

Anyways I would like to give my program to some friends either by Email or via the internet (I have a website [url] (it is a wordpress blog) but I have no clue as to how I would get it onto my site.

I have attempted to Email the files .. first I had to change the file extension because Email would not send an .EXE file.. Then I tried to ZIP the files and send them via WINZIP but my recipients kept getting 'unable to open file' messages.

View 7 Replies

Office Automation :: Called "Freemind" That Is Called A 'mind Mapping' Program?

May 13, 2010

I recently found an awesome tool called "Freemind" that is called a 'mind mapping' program. It's similar to MS Visio but way cooler and more automated.I reeeallly would like to integrate this into a VB.net Form, but how?

Has anyone seen or heard of mind mapping inside VB.net before? Are there programs out there already that work with VB.net or anyone have an example they have seen / built that works?

View 5 Replies

Can't Make Difference Between Public Class And Private Class And Friend And Protected Friend Class

May 15, 2009

I can't make difference between public class and private class and friend and protected friend class.

View 1 Replies

.net - "Public Friend" Versus "Friend Friend"?

Apr 21, 2011

I've been reading about access modifiers in VB.Net lately, and there is something that I can't really understand: How do elements in a Class (or Module) inherit the modifiers of their enclosing block?For example, suppose you have a Friend class Bla in an assembly, with a public method Foo:

Friend Class Bla
Public Sub Foo
(...)
End Class

Does it behave differently than when Foo is set to Friend?

Friend Class Bla
Friend Sub Foo
(...)
End Class

View 1 Replies

Interface And Graphics :: Possibility To Get In Program Information From A Called Program?

Aug 7, 2011

Is there a possibillity to get in a vb program information from a called vb program?For example: Dim id As Integer = Shell("C:program.exe id_1") program.exe is a vb windows form program and must return a value back.

View 1 Replies

Sub Called On Program Init?

Jul 20, 2009

I have an event callback that I created to respond to the value change of a numeric control. For some reason this sub is called event before my first Frm_Load submethod is called. Grrrr...why is this sub being called first before anything else?? The event passed appears to be "Empty".

View 2 Replies

Function Not Getting Called, And Program Stopping?

Apr 18, 2011

I have a function to pull data from a XML, and to report a specific number based on a value in one of the elements in the XML. Unfortuntately, I can't get any break points to work, so I've been debugging with a trace.he strange this is that when i take out the function itself it works like it should, otherwise the Service freezes when it gets to the function and never uses it. I'm calling the function in while loop which is also within a Try Statement, here's example of the code.

Public
Shared Function GetXNumber(ByVal
audit As Audit.API)

[code].....

View 12 Replies

How To Recreate A Datagrid

Sep 28, 2009

Anybody have any idea how to recreate a datagrid like the one provided in the image or is there a control out there anyone knows of.Notice that the headers are split in a 24 hour period then the the next headers are split in 15 minute icrements. Anybody have any idea how to do this?

View 4 Replies

How To Recreate A Desktop

Sep 30, 2009

im making a program which is a sort of mock OS, and im wondering if it is possible that, when i click a certain button, a picture box appears in the space which is the desktop. The picture box must act as a shortcut, for example if i click on new text file, a picture box with a text file picture appears on the desktop space, same for folders

[Code]....

you check the tutorials that you post! I am using Visual Basic 2008 Express, not any earlier additions! One of the tutorials was about how to make labels that tell you their screen location!

View 9 Replies

Make A Program Called Process Master?

Jan 12, 2010

Hows it going. Im in some need some help. Im trying to make a Program called process master, and one of it's features is When clicking an item in Listbox1, It will show on the side in Label 11 the path of that process.

System.IO.Directory.GetCurrentDirectory.listbox1.selecteditem = label11.text As you can very well see, im new with System.IO commands. Been wanting this as one of the main features!

View 1 Replies

Program Not Waiting For Called Code To Execute ?

Feb 16, 2012

I'm writing a program and have run into a bit of a snag. I have the code perform a button click on certain buttons, the reason for this is I have a bunch of buttons that each do something and one that does everything automatically. I suppose I could rewrite everything under that one button but that would essentially double the size of my program, I could use an if statement to catch the fact that the program is in automatic mode but that would be about 15 conditions (not looking forward to writing that statement ;p)

Clicking the buttons is a nice simple, clean solution. The exception being the program performs the click then continues on executing the rest of the code in the actually clicked button while at the same time executing the code called by the code click. Main problem with this is the data that needs to be populated by the code click isn't being populated fast enough for the code in the main button so then there is errors, blank data, program doing nothing. A simple sw timer to delay could work (I know how to make one of those) but the problem with that is the program is executing against a webpage and if the webpage takes a few seconds longer to load then anticipated everything is out of wack again. I'm looking for a simplish way to cause the program to wait for ALL code called by any raised event to finish before proceeding.

i.e. Call Button.clickEvent > Wait for code and subroutines executed by Button.clickEvent to finish > continue with rest of code in button.

Below is the code I'm using so far for the user clicked button.

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Button4.PerformClick()
'Need to wait for all code executed by Button4 and anything it calls to finish
x = 0

[CODE]..........................

View 7 Replies

Pause Threads Or Recreate?

Feb 20, 2009

I've created a class that manages two threads for reading from the stdout and stderr streams of a child process. The class is working fine now by pausing the threads when they aren't needed by calling Thread.Sleep(Timeout.Infinite), but I have a question about resource usage...

Does it make more sense to allow the threads to finish execution and recreate them when needed or to just sleep them and then wake the threads up via Thread.Interrupt when needed?

View 1 Replies

Recreate The Windows Taskbar?

Jan 28, 2012

I am making a Kiosk system and would like to recreate the Windows Taskbar in VB.NET, specifically the window management features of the taskbar: displaying open windows, switching between windows, and highlighting which window has focus. if the taskbar had the same positioning properties as the Windows Taskbar, in that even when other windows had focus the taskbar would still have focus and would not taking focus away from windows on the screen, and maximized windows would not maximize over the taskbar.

View 1 Replies

Have A Column In The Datatable Called Amount And A Textbox Acting As The Filter Called Say Maxamount To Set It?

Feb 9, 2011

i was wondering if it possible to have a condition where lets say you have a column in the datatable called amount and a textbox acting as the filter called say maxamount to set it so the rowfilter when filtering the table will sum the number in the amount column until the number in maxamount is met, then stop and only return the rows where the total sum of the amount column is equal or less than the maxamount value, so i guess if the next row takes us over the maxamount it discards this row and returns the rows previous to it. is this possible using datagridview rowfilter or should i be loooking elsewhere to achieve this?

View 4 Replies

Combo - Sql Table Called Stock With Two Fields Called StockID And StockCode

Jun 5, 2011

I have an sql table called Stock with two fields called StockID and StockCode. I want the user to select the stockcode from a combo which in turn populates the stockid for that item into a lable on my form. I have already populated the stockcode into the combo but dont know how to compelte the rest.

Imports System.Data.SqlClient

Public Class cbo2
Private Sub cbo2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

[CODE]...

View 4 Replies

Form Called FrmPracDetails Which Is Built Up With A List View Called LvwColProc

Aug 11, 2009

I have a form called FrmPracDetails which is built up with a List view called LvwColProc. Therefore when you click a field on the LvwColProc it takes you to another form called FrmColProcessing, here you can make changes to certain fields which are also present on FrmPracDetails. What I want to do is when you make changes on FrmColProcesing and Click the Save Button (which calls the Save function)the changes appear instantly on FrmPracDetails. Please note, FrmColProcessing will always be open next to FrmPracDetails. I have tried to put this code in the Save function present in FrmCol Processing as shown below, but it doesnt Refresh FrmPracDetails form. [code]

View 1 Replies

Create A Delegate And Use The Function In Program Called DoStuff()?

Jan 4, 2012

For a class, I have to create a delegate and use the function in my program called DoStuff(). There is an error tht says "Method 'Public Sub DoStuff(stringVal As String)' does not have a signature compatible with delegate 'Delegate Sub MyDel()'.

[Code]...

View 2 Replies

Forms :: Creating A Program Called Workshop Selector?

Apr 19, 2010

i'm creating a program called Workshop Selector. It has 3 list boxes, one with the 5 workshops, second with 6 locations, and the final is the list of costs. The user selects a workshop, a location, then hits the Add Workshop button, which calculates the costs and adds the cost to the third listbox. Soo, to my question.

There is an additional button called Calculate Total that adds the values of the costs in the cost listbox and displays the total in a textbox. The code i currently have that works just fine is --

Dim one, two, three, four, five, total As Integer
lbCost.SelectedIndex = 0
one = CInt(lbCost.SelectedItem.ToString)
lbCost.SelectedIndex = 1
two = CInt(lbCost.SelectedItem.ToString)
etc..etc..
total = one + two + three + four + five
tbxTotal.text = total

While this works, i have no idea of knowing how many times the user will add a cost to the cost listbox. therefore id have to make many many variables, and other issues occur.So is there a way i can do this with a for loop? declare a global variable like

Dim costcounter as integer

then at the end of the add workshop cost btn click procedure use:
costcounter = costcounter + 1

That way i kno the exact amount of times the person added a cost?

Then create a for loop like

Dim intcount As Integer
For intcount = 1 To costcounter
code....
Next

Would this work somehow? but what code would i have to input within the for loop to scan each selected index, and then return values that can be added together and displayed in a textbox?

View 2 Replies

Get A Open Dialogue To Select A Program For App Called Winhome?

Aug 22, 2011

Ok ive managed to figure our most of my problems, and get help , from u nice people. i have 88 buttons and 1 is visible by default the rest are invisible so if you click the first button you get a open dialogue to select a program for my app called winhome after that i need the second button to become visible, and so on,any quicker way to do this instead of manually copying/pasting if statements?

View 15 Replies

Setup Project - Can't Be Installed Without A Program Called Infragistic

May 24, 2009

I need to create a setup project, the main project can't be installed without a program called infragistic.

How can I do ask for infragistic program before to install the main project? If infragistic is not installed, the setup project must install it, I mean execute the infragistic installer before the main installer.

View 7 Replies

Properties - Default Property Set Being Called Mysteriously Called?

Apr 2, 2012

I have the following line of code in my program:

JCL_History.Enqueue(JCL_History(I))


This JCL_History object is basically a Generic.List encapsulated in a wrapper and has the following method:

Public Sub Enqueue(ByRef value As String)
If Members.Contains(value) Then
Me.RemoveAt(Members.IndexOf(value))

[Code].....

In my testing I have 2 items in this JCL_History list. When I call that first line of code I posted (the one that invokes Enqueue) with I = 1 I expect the first item to be shuffled to the bottom and the second item to be shuffled to the top.

After the thread returns from Enqueue I notice that this is exactly what happens to my list, HOWEVER if I hit the "step_in" button after the execution of Enqueue I go into the Default Property's set method where Index = 1 and value = and it screws everything up, because the item that got shuffled to the end (index 1) gets overwritten by the item value shuffled to the top.

So basically the set method on the default property is getting called at what I think to be a completely ridiculous time. What gives? By the way I'm running VS2005 on XP.

View 1 Replies

Recreate A Vb Project To Match The Functions Of A Demo?

Nov 24, 2009

I have done a project were I had to recreate a vb project to match the functions of a demo. In the demo the panda is unable to go through the rock. I have tried hard and am unable to stop the panda going through the rock. Please could someone show me how.

I have attached the project below.

The demo is contained in the folder of the file i have attached.

View 11 Replies

Recreate/redraw A Chart With Different Series At Runtime?

Mar 17, 2012

I am using a button on a form which creates a chart at runtime when the user clicks the button. it works ok for the first time but when I select the button the second time I get a square diagonal box or indexoutofrange Exception.Note: I have another button that clears the series from the chart before reselecting the button that creates the chart.

Below is the code segment

Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
Static Dim counter As Integer = 0

[Code].....

View 1 Replies

Create A Code That Can Be Called Apon To Activate But Not Receive Or Send Any Information Through The Program?

Jul 18, 2009

I have been developing a calculator for complex math. (Much more complicated than +,-,/,*, and above your usual scientific calculator)Its works quite well .In past programs I have used "private functions". I know that you give them a value and it returns on back. But what if you dont want to recive or send value? My example for this is a function I am attempting to make called "Autopi".The idea of Autopi is that whenever a mathimatical operation is about to be performed textbox(s) are cheked to see if they contain pi. (3.14 or 3.141) If they test positive Autopi will continue pi to however many places have been specifyed in the program. (Currently 300 places just beacuse i can :) Before the Autopi function does this it chekes to see if variable "pi" = 1. If it does it proceeds if it doesent its job is done

How would I create a code that can be called apon to activate but not recive or send any information through the program.And just to clarify what I mean by that is it will read information out of a textbox and write into it. But it wont actualy recive anything or send anything back from where it was called apon.

View 5 Replies

.net - SSRS Report Called From ReportViewer Control Displays No Data In The Report When Called With A Parameter

Apr 11, 2012

Can you look at my coding and let me know what I'm missing or doing wrong?I have a SSRS report that is called from a ReportViewer control and the ProcessingMode for this control is Remote. The report also has 1 parameter in it's DataSet.In the code I placed a MsgBox to make sure the code is finding the parameter and returning the parameter name. I am trying to stick the value of 10 into the parameter for playerID 10. Data for this player does exist.

I believe I need to add some more code to make this work but I'm not sure what else to add.

When the code executes the report is displayed but no data is shown in the report.

[Code]...

View 1 Replies

.net - Friend WithEvents In VB Vs Private In C#

Dec 17, 2009

Who knows, why in vb.net WinForm projects the designer by default use the Friend WithEvents attributes and in C# - private ones.

By ex, in a form.designer.

.cs

private Label Label1;

.vb

Friend WithEvents Label1 as Label;

For WithEvents is more or less clear(for using Handles, apparently). But why Friend in VB and private in C#...

View 4 Replies

Declare A Class As Friend Of Another In VB?

Jun 30, 2009

I have class Aand BHow do i declare the class B as a friend of A?

View 4 Replies







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