C# - Heavy Computing On Remote Pc?
May 8, 2012
I love to experiment with linqpad, but now my task requires heavy computing power. Trying to do it on my computer is painful. My friend has a much more powerful computer than I -- can I execute some operations from my linqpad on his computer? I don't have RDP access, but I can run any .NET program on his computer.
If it is not possible, then is there any FREE service that provides computing power? Maybe a hosting trial or something. I know that Windows Azure offers a 30-day trial, but it has a very slow CPU module and in my country, MS partners cannot be expected to fix service sites when they go down.
View 2 Replies
ADVERTISEMENT
Feb 23, 2010
I would like to use C# for an application I'm building, but the application makes heavy use of automation (i.e. Excel, Word).
Is it feasible to use C# for such an application? It used to be a nightmare to use C type languages for things like parameter lists with null arguments etc..?
View 2 Replies
May 28, 2009
I created a heavy application in vb.net 2005. And on start up of main form it doing lot of things like
1. Check New Software Update taking 15sec
2. Check Registration taking 15 Sec
3. Initialize Software also take almost 20 sec
First my application show Splash Screen and do 2 operations like
1. Check Update
2. Registration
So i want to do this First show Splash Screen and
-same time it start 3rd Process and remain Hide Main Form
-Same time it perform 1st and 2nd operation if pass then just show 3rd step without time waist.
I do it with delegates threading but it is not doing both operations same time.
View 8 Replies
Nov 26, 2008
I have this application that fetches huge chunks of data from databases and i would like to have a loading screen, or simple image (gif) appearing on top while the app is working... but what normally happens is the whole application locks up. How can I make a certain part of my application still responsive while the rest loads?
View 1 Replies
May 19, 2011
I'm building a VB.NET 2010 app that tracks battery usage. Run the app, start logging, then let the battery go flat. At the end, you get a nice graph that shows you how long the battery took to run down. Compare it to previous results and you can see how battery life is doing.
But this is supposed to be an unattended app, so it's not feasible for me to sit down and use word, browse the Internet, listen to music, play games etc. for four hours (especially at work!), so I'm looking for a way to artificially increase CPU usage to chew through the battery faster, and simulate how a battery would probably be used throughout a work day.
I've managed to inflate the memory usage using:
Dim a as long
Dim ptr(0 To 20000) As IntPtr
For a = 1 To 20000
[Code]....
I increase CPU usage in VB.NET? I've tried creating new threads with constant loops, but I get the funny feeling that VB.NET optimizes these kind of things to prevent memory and CPU hogging apps from taking over
View 3 Replies
Aug 25, 2009
I have combo box being filled with more than 50 thousand records. it is getting sometime to load and bind the data. I am using datatable to bind the data. I tried using data-reader as well but in vain.
View 3 Replies
Jul 19, 2008
How To on a database driven login form. I'll include the Administration Backend to go along with it soon. Dial-Up users should not use this thread, it is image heavy
[Code]...
View 17 Replies
Aug 12, 2009
I'm trying to compute 100! and there doesn't seem to be a built-in factorial function. So, I've written:
Protected Sub ComputeFactorial(ByVal n As ULong)
Dim factorial As ULong = 1
Dim i As Integer
For i = 1 To n
[code]....
Unfortunately, running this with the value of 100 for n rseults in
Value was either too large or too small for a UInt64.
So, is there a larger data type for holding numbers? Am i mistaken in my methods?
View 5 Replies
Feb 19, 2009
I need to compute the percentage of games won and games lost. I keep getting errors and it's driving me up a wall. I've changed my code so many times that I don't really remember what it was like when I started.
Private Sub btnPercentage_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPercentage.Click
Dim team As String
[Code].....
View 6 Replies
Jun 14, 2010
How would you take a numerical input from 10 text boxes and total it up and send it to a label. Then average the 10 numeric text boxes and send it to its own label. I am not asking for any code, I just need a hint or two to jog my memory. If this is not clear for you, I'll provide more detail.
View 1 Replies
Oct 16, 2010
I am using SQL EXPRESS EDITION 2005 and Created mdf data file using vb.net 2008. now i want to use this datafile in lan. i modified connection string "Data Source=.SQLEXPRESS;AttachDbFilename=ServerDataData1.mdf;Integrated Security=True;User Instance=True;Connect Timeout=60"it is showing security info error i want to use single database file for my application please help me with connection string. thank you
View 1 Replies
May 26, 2010
i am trying to make a robot that i can talk to(not yet) and tell it to goto places 1st task it to figure out how to use an inbuilt webcam in my net book and do an image Recognition for walls stars eg 2nd task is to see if i can get it to use my server to help compute the images because my net book is very slow 3rd is speech to text now can all of these be done in vb.net?
View 2 Replies
Mar 6, 2011
I have been given the prep material for my AS Level (Year 12) computer programming exam based around dice cricket. Written in VB 2008.
In the exam we are supposed to change bits based upon the scenario. The scenario and skeleton code are attached.
I have looked through the code so far and made some guesses to what I think may be on the test:
[code...]
if there is anything I am missing which they think I could be asked on the test. I then have to go away and figure out how to program.
So by asking on here, I am not trying to find out coding answers - I do want to figure that out myself. I just want to see if there is anything else I possibly could be asked?
View 9 Replies
Jun 13, 2010
I've had experience with using hashvalues from String objects. E.g., if I have StringA and StringB both equal to "foo", they'll both compute out the same hashvalue, because they're set to equal values. Now what if I have a List, with T being a native data type. If I tried to compute the hashvalue of ListA and ListB, assuming that they'd both be the same size and contain the same information, wouldn't they have equal hashvalues as well?
Assuming as sample dataset of 'byte' with a length of 5
{5,2,0,1,3}
View 3 Replies
May 31, 2011
I am trying to write code to compute the Efield on a point P in both the x and y direction, from a charged ring. double y_eField = (_ke_value * _dq * (Sin_angle) / (Math.Pow(r, r)));Problem I am having is the code seems to follow the equation as given but the result it outputs is not correct at all.
View 2 Replies
Oct 24, 2009
I have just started coding my Computing project for my A-Level, and I will admit, I am far more experienced in VB6 than VB.NET (as embarrassing as that is to say).I get extra marks for making everything presentable, so was wondering if it was possible to add icons into .NET buttons. For example if I have a button to add an entry to the database, I want a nice Web 2.0 looking icon (for which I already have) next to the text on that button.
View 1 Replies
Dec 7, 2009
I have a server that runs a thread that computes some data through function X. Then I have a client that communicates with the server and gets results from function Y. Now, both function (X and Y) share a common variable lets say varZ. When function X populates varZ when the thread starts on the server, the results are not propagated on function Y when accessed by the client through Remoting. But on the server side the results are correct in function Y! It's almost like when client calls function Y, it has no idea what is happening varZ is as far as the value set by function X thread in the server.
View 2 Replies
Jul 7, 2010
trying to understand DataGridView. I can sum columns with no problems and place the result in a textbox. My problem is multipling two column rows and saving it. I receive the following error when I go to save it. "Column mapping from source column failed because the data column is a computed column. So can I compute two column row to a third and save it, if so how. My code is below:
I save.[code....]
View 10 Replies
Nov 24, 2010
i made application for computing totient function but it doesn't give me any result this is a code Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
[Code]...
View 1 Replies
Jan 12, 2010
i made application for computing totient functionbut it doesn't give me any result
this is a code
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
[code]......
View 11 Replies
Feb 4, 2010
I'm struggling with making a log in form on vb.net for my A2 computing coursework.
Public Class DbConn
Dim connection As OleDbConnection
Dim cmd As OleDbCommand
Dim dataReader As OleDbDataReader
[code].....
View 2 Replies
Dec 2, 2010
I need to create an console application that computes the average monthly rainfall, number of months with above average rainfall, and the number of months with below average rainfall, given the rainfall amounts for each month in a particular year. The program must read in and store in an array the monthly rainfall amounts entered by the user one by one.
So far this is what I have got
Const intMonths As Integer = 11 'Constant Month variable
Dim sngRainfall(intMonths) As Single 'Rain for the month
Dim intCount As Integer ' Loop Counter
Dim sngTotalRainfall, sngAvgRainfall As Single 'Total and Average Rainfall
[Code] .....
How to set this up properly and I am having a real hard time figuring out how to make the data go from this loop to another and add the data to the total.
View 15 Replies
Sep 11, 2009
Let's say you have a user class. When the user is logged in there are properties representing basic user info, an associated address and, say, 5 profile pictures, the last a generic lsit like this: Private _photos As List(Of Photo). However, instead of carrying the weight of the profile pictures in a session vairable, to reduce resource usage, I only want to populate them if the user needs to acces them. So, for the most part, the generic list of photo's is empty. Will it carry weight anyway? I'm trying to decide if I should just not populate ituntil needed, or if I should create an alternative "light" user class which doesn't have this property.
View 2 Replies
Aug 2, 2011
I have everything except the calculation for the increase or decrease in enrollment. Not sure how to handle this in a 2D array. (online class is not
Module Module1
Dim campus() As String = {"Decatur Day ", "Decatur Evening ", "Huntsville Day ", "Huntsville Evening ", "Distance Learning "}
Dim semester() As String = {"Fall 2010 Semester: ", "Spring 2011 Semester: "}
[code]....
View 5 Replies
Jan 20, 2010
Rather than use an Entry name of an existing VPN connection, is it possible to connect to a remote network by creating a temporary connection on the fly by using the remote IP/Host name, username and password?
View 6 Replies
Aug 5, 2010
I want to do a small application that made the broadcast of images from a PC. The idea is to make an application of remote management but without the management part, only with the viewing of images. Anyone know any code already done or any API that helps in the project?
View 8 Replies
Feb 4, 2009
I'm not looking for anyone to complete my "home work" assignment for my A-Level computing as I've done this now and I think it's impressive. What I am now looking for is help in extending what I have done and making it better.
History:I have built my application in Visual Basic 2005 Express Edition. It is a Console Application. After filling in the questionnaire the user gets given results and all this information is stored in a .txt document (Notepad). I want the data that is put in to the application to send infomation to the user's e-mail address. I have been looking around the internet and it says it could do it but it needs Outlook express.
View 3 Replies
Dec 27, 2009
I'm trying to develop a windows application where i can get connected to remote server and look for process state going in remote server.We have many remote servers where automatic installation of software going on. We have an xml file(installstatus.xml) where it tells us at what stage the installation is (Example : Inprogress , Completed, Failed.)
So our aim is to develop a windows application where i can get connected to that servers and look for their installation status(may be we can use installstatus.xml to look for installation status). Every time i connect to a server, the server information should get stored in XML file(i want to create a xml file where all the servers list i connect to should get stored)
The UI at left side should will have list of servers i can connect to. When i get connected to server, at right side of UI, i want to display the status of installation (In progress, failed , completed).
View 1 Replies
Sep 17, 2010
I am running into trouble with some code I am doing for an assignment. The section within the apostrophes (If Then Else) is the section that I am having trouble with. When the user selects a seat type and then clicks the compute button, the wrong cost is displayed instead of an accurate cost.
Option Strict On
Public Class frmTickets
Private Sub btnComputeCost_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnComputeCost.Click
Dim intNumberOfTickets As Integer
[CODE]....................
View 6 Replies
Feb 18, 2012
I am using
Dim url As String = Server.MapPath("MyFiles") & "" &
System.IO.Path.GetFileName(hpf.FileName)
to get the url of the uploaded file.
The result i get is
D:2008VSLTC INDIALTCIndia v 1.52AdminPanelMyFiles1.jpg
i want it to be like this [URL]
View 1 Replies