VS 2010 - Get The Handle Of The Java Applet And Set It To An X And Y Co-ord On Form
Jan 29, 2011
Ok i'm loading a webpage in the WebBrowser Control, but what i need to do is manipulate that webpage. Here is the webpage (you will probably need to take a look so you know what i'm talking about). [URL] Now i'm trying to remove the advert at the top of the webpage OR somehow get the handle of the Java applet and set it to an x and y co-ord on my form.
View 2 Replies
ADVERTISEMENT
Apr 15, 2012
It's my first time to use this component and I manage to simply load a simple website in my program. My question is, how do you handle webpages that loads a java applet? I am able to load a webpage login form via navigate function and successfully logged in too, but now here's the problem, when I click a link, the page will load a java applet, how can I handle this?
View 1 Replies
May 3, 2010
how to run java applet from vb.net form its like when pressing a button in vb.net form the applet will run
View 7 Replies
Apr 7, 2010
I have created a submit button "sbutton" that should take all totals from 3 boxes and if that total is greater than 1, then it should be subtracted from 1 and the remainder is suppose to be displayed as change...this is what i have
public void actionPerformed(ActionEvent evt) {
if(evt.getSource()==sButton){
change.setText(---"I DON"T KNOW WHAT TO PUT HERE")
[code].....
View 1 Replies
Nov 10, 2009
I am trying to navigate the URL to an applet login interface. Is there a way to determine if the applet is ready to take input? You know when Java is loading. My timing is not right, and I want to be able to make it stable by determining when Java applet login object is in a ready state.
View 1 Replies
Apr 13, 2010
accessing data in a Java applet using Visual Basic? I need to do some research on whether or not it is feasible for the project I am working on, but it has been difficult to find any information.
View 1 Replies
Jun 13, 2009
i am using IE7Clone from
[URL]
I also commented
Enum oCommands As Long
Options
Find = 1
[Code]....
View 4 Replies
Jun 19, 2009
In the process of upgrading one of our applications, it was decided that the users needed an image viewer. We already have a browser based application that does a great job at that task. Since a lot of time and effort was put into the browser based code, I really want to use our browser based viewer rather than write new code to do the same.So, I've added a WebBrowser control to a form and figured I will call our Java applet from there and not re-invent the wheel.
View 2 Replies
Apr 7, 2011
I'm trying to use a asynchronous UDP-Port to recieve data on a form.I manage to receive one message at a time(for each click of btnReadData), however if I do this receive in a loop (in order to continously receive new messages), my form seems to be locked.What am I doing wrong?
Public Class FPR2DIS
Delegate Sub dDataReceived(ByVal Data As String)
Dim UDPWorker As New Worker
[code].....
View 3 Replies
Jul 19, 2011
I have a bit of an issue.I have a ton of functionality written in java and have been asked to investigate how to consume it from a .net application.Can anyone point me in the right direction as I havent a clue.For some reason wcf came to mind but I am pretty certain that wont fit. AAAArrrrgggghhhhh
View 2 Replies
Feb 19, 2012
is it possible to add an instance of a java application as a child form a .NET Form?
View 2 Replies
Sep 22, 2011
Can I play a Java Game in my visual basic form?
I wan't to create a OS and add minecraft to it ...
View 1 Replies
Oct 16, 2011
I am making an application that automatically sends text (Basically an autotyper) for a game called "Minecraft". Minecraft is a java application. I need Minecraft to be in focus when button1 is clicked. It will then send the keys.I know how to get it to focus on simple things such as notepad but it is not working for minecraft.
View 1 Replies
Jun 1, 2010
Is there an equivalent to Java Properties in VB. A Properties file in java is a place where you can save propeties for an application. So if an application looks at a file on a server (which could change) you could save to location in a properties file the if the location changes you just change the properties file. You do not have to recompile the program.
View 2 Replies
Feb 24, 2011
I have the following Java code that i am trying to dissect to better understand what all it is doing:
try {
String userName = System.getenv("USERNAME");
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH.mm.ss");
OracleDataSource ds = new OracleDataSource();
ds.setDriverType("thin");
ds.setServerName("xxxxxxx");
[Code]...
View 4 Replies
Apr 17, 2010
I am currently working on creating a environment variable editor which will analyze your JAVA version and add/edit your class paths accordingly.I wanted to know how I would go about getting the JAVA version that is running on the computer. So I will basically have a button that is clicked then the java version will be displayed in text box 1.
View 1 Replies
Jan 11, 2011
How can I use reflection to interact with Java game?
View 4 Replies
Aug 17, 2011
I am making a java chat server, and a guy was able to connect to it no problem (however, he logged off for the night before I ran into any problems, so I couldn't see what he did). Here is my code on the VB form:
[Code]....
View 5 Replies
Jul 11, 2009
is there anyway to convert my VB application to a web based applet
View 9 Replies
Dec 12, 2009
I use the following coding to show six images from the latest photo album i uploaded picture to. However the images being shown are the 1st six images in the folder (which are the ones the oldest uploaded) not the final six images uploaded.Anyone can help me what should i change in the following coding to show the last six images in the folder.
<%
latestfolder = "na"
latestdate = cdate("01/01/09")
[code].....
View 1 Replies
Jun 4, 2010
So here is what I have working: frmMain loads and detects the screen resolution. If the resolution is too low (below 1024x768) it tells the user to turn up the resolution.From here they can either click Yes(to open the display properties control panel)
or No to close the program.I have this working: clicking yes opens the control panel (desk.cpl).I need the program to wait until the user click OK/closes the display properties window; the control panel opens and frmMain continues to run instead of waiting.
This is what I'm doing so far:
result = Shell("rundll32 shell32,Control_RunDLL desk.cpl,,3", AppWinStyle.NormalFocus)
What comes next in terms of pausing the program until the window closes?
View 5 Replies
Sep 22, 2009
I am new to this. am wrting a program that uses the parent forms data...
but i am not able to access the parent object and use it with the client data [code]...
View 14 Replies
Jul 13, 2009
I have two forms, "Customer Information Summary" and "Products Sold". They are shown as separate tabs in a MDI window. When the data in "Products Sold" gets updated, I would like an event to fire from that form which could be handled in the "Customer Information Summary" form.
View 1 Replies
Jan 22, 2011
I've got a form that acts as a progress report for a long running operation, it has a listview on it (which I might be replacing with a DGV soon) that gets updated with progress updates from a background thread that is doing all the work. The method running on the background thread raises events that the form then handles and adds the string passed in to this event to the listview. The method running on the background thread raises progress update events several times a second and for each of these updates the event handler on the form must invoke a method on the UI thread to actually add the item to the listview.
This works fine on my test PC (which has a quad core CPU and 8 GB of RAM) but others have reported that after a while the form goes to the Not Responding state so I'm assuming all of these updates on the UI thread are being requested too often for it to be able to process them all as well as user input.So I'm looking for a better solution and have come up with the following:When the background thread raises these progress updated events, instead of them being added to the listview instantly I add them to a Queue(Of String). Then every second the form would check this queue and remove any items currently in it and add them to the listview - using a Queue(Of T) instead of a List(Of T) should guarantee they come out in the correct order. Both of these operations (adding to the queue and reading/removing from it) would be done under a SyncLock block that would lock on the same object to avoid both threads trying to work with the queue at the same time, so there would still be some contention but I'm hoping it would mean the UI thread only gets busy once a second instead of potentially roughly 30 times a second as it is doing now.Does that sound like a good plan? Can anyone think of a better way of handling this?
View 18 Replies
May 2, 2011
I have been working on a program and I need it to unzip a zip file. I tried handling a zip file as a directory but that didn't work.It wouldn't hurt if I could compress files into a zip file to! But I need unzipping the file first.This is my code handling it as a directory:
Dim count As Integer = Directory.GetFiles(My.Application.Info.DirectoryPath & "Games" & game & "�00.zip").Length
MessageBox.Show(count)
It has an error saying it is not a valid directory name.
View 4 Replies
Aug 28, 2010
I need to get the handle of a variable. How do I do this?
DEVICE_PARAMETERS = New PresentParameters
ZeroMemory(>>Handle of DEVICE_PARAMETERS<<, Marshal.SizeOf(DEVICE_PARAMETERS))
-Ren�
View 4 Replies
Dec 26, 2011
Only now, I'm facing this kind of problem, i have a application that until now worked with two different cultures ENG and PT, i always knew this, and i manage to solve all problems related to parsing the numbers, but now i have to change the code, and "protect" the code to handle with others cultures. So i need tips/best way to handle different cultures, and different database culture settings.I think that i shouldn't limit the user, by setting the decimal, the grouping digit, the date time format, etc. . The application should accept the numbers in the user current culture. But this path forces me to putting everywhere the parse/tryparse method.
View 1 Replies
May 17, 2009
I had created a form(MDI Child) which have 3 to 4 dataset on it. They all are loaded from the database at the form load event and therefore takes too much time to load and show some part of form during that time. When it load completely it shows the whole form. Is there any way that user will see the complete form instead of some broken form.
View 4 Replies
Aug 10, 2009
Is there a way to handle form.maximumbox.click in .net 1.1?
View 4 Replies
Feb 26, 2010
I have the following code to handle keypresses on the form:
Private Sub Form1_KeyDown(ByVal sender As Object, _
ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
Debug.WriteLine(e.KeyCode)
[Code].....
The first time I press any of the arrow keys the code is not executed and a NumericUpDown(NUD) on the form gets the focus. The rest of the times the arrow keys are pressed everything is fine, until I click on a button. Then the problem repeats, focus NUD, then fine.
View 2 Replies