Use Our Normal Applications Over Net?
Aug 2, 2010
Can we use our normal vb.net applications over the net?
I mean if I try to make my windows based application, that registers students to School record using Access Database,
will it work on the internet in the same way as it does on my local computer?
View 6 Replies
ADVERTISEMENT
Sep 12, 2011
I am working on a project that is used for key broadcasting. Don't worry nothing illegal, I'm making a multibox application for world of warcraft. However I am having trouble when it comes to launching and manipulating other applications from another.
[Code]...
View 2 Replies
Aug 15, 2011
how to connect different vb applications to a database server.like accessing data from one database by different applications...
View 4 Replies
Jul 24, 2009
Is there a way to, when a parent application is opened up, that at the click of a button, or anything of designated event, that this parent application can open a secondary one?
View 11 Replies
Jul 20, 2010
i want to use some api's in my software . Other than api there is no other way .
I want to learn more about win32 api . Can some one tell me
And what is the difference between Native api and normal api
View 12 Replies
Sep 14, 2009
I get a number of something like 4.44444444444444E+24. How do I do to convert it to it normal form as 4444444444444444444444444. (I have to compare these to return true value if it's equal )
View 1 Replies
Jul 29, 2011
I am working on a application in which I have to show different forms stacked one upon the other. Due to some restrictions, I cannot use MDI and also it has a lot of issues. I am able to get what I want but with a problem. The forms will be stacked, but they do not remain in the parent form. Lets take it by an example. The structure goes like this.
1) There is a form A (My parent form)
2) a second form "B" opens on a button click event on Form "A". (Note: B.ShowInTaskBar=False)
3) again, a third form "C" opens on a button click event on Form "B". (Note: C.ShowInTaskBar=False)
Now, when I minimize form A, it gets minimized but the Form B and C, remains as it is. I want them to get minimized at the same time. I want form B and C should remain as a child form of form A.
View 1 Replies
Feb 2, 2010
My Form is TRANSPARENT and i dont know how to make it normal again.
View 2 Replies
Oct 8, 2010
What is in the English language the opposite of side?
First let me excuse myself not been able to find a relevant newsgroup for this. I am missing 'other general development'.
I am programming a machine that checks the content of a little bag with pills in it. They can be either on a 'normal' position, or they can be in there on laying on their side. How could I translate the 'normal' position? I've thought of 'flat', or (on their) 'back'.
View 6 Replies
Oct 8, 2011
i wanna make Leetspeak translator like this: http:[url].....And also that it ca be possible to translate leetspeak to normal letters.2 textboxes and 1 button.
View 3 Replies
Oct 27, 2009
I Want to know which one is preferred while coding to use Static Methods or normal instances, I prefer to use static if they where few but if there was many of them I start to get some doubts
[code]...
if the EmployeeManager Has Many methods (selects deletes updates) is it ok to make them all static.and if it was Normal instance. wouldn't be a drawback if the object is initiated every time specially if GetAllEmployees() is heavily used.What is the better approach to use?
View 3 Replies
Apr 2, 2009
I am need of creating a windows executable that contains a compression of certain other binary files, (executables etc)
It is a basic form with a button, on press of the button, it has to decompress certain binary files( some other executables too) into a certain path, the decompression happens based on some specific conditions and not always., This is the reason I could not use WinZIP to create the EXE.
View 3 Replies
Jul 19, 2011
I need a code to check the pagerank of a website in vb.net url...and it does work, but not all the time it gives much 0/10 while they are 3/10 or 4/10 or so.does someone have a normal vb.net code to calculate the pagerank??
View 1 Replies
Mar 10, 2009
My users uploads a picture and the picture get saved into my SQl Server Database.My users view the picture on the page in a normal Image WebControl with size 150px by 150px - example can be found[url]...
If the user uploads a picture of 300px by 200px the image will look funny in my static 150px by 150px Image box. Any idea how i can display the Image so it wont be fuzzy?
Also, how can a have some form of pop-up that will appear on the screen, showing the actual size of the picture from the database when the user clicks on the 150px by 150px Image.
Note: I dont want the Image static size to increase as this will totally mess up my page layout and look. It must be some form of pop-up or something. Something i have seen before i think was really cool. User clicked on the small image and then a pop-up appeared in the middle of the screen with the actual size of the picure and everything ells on the page was disabled until the user clicked on the close button.
View 2 Replies
Jul 15, 2010
In VB .NET, I know I can get a stack trace by looking at the value of ex.StackTrace when handling an exception. How can I get the functions on the stack when I am not handling an exception? I am looking to implement a logging system of some sort to record the steps the user takes prior to a crash to assist in debugging.
View 3 Replies
Nov 29, 2010
I'm trying to add items to the listview, but ever time i add a icon the Listview freezeslinks a white color for a millisecond.A millisecond is not a lot, but when you add 5 items per second to the listview then all you see is a white shade blinking. I tried slowing the thread down so it takes longer for it add the items still no luck.
View 5 Replies
Mar 28, 2012
I am trying to have my program stop a process then delete the file (the process file)
Dim pProcess() As Process = System.Diagnostics.Process.GetProcessesByName("Bit")
For Each p As Process In pProcess
p.Kill()
Next
[code]....
Everything works perfectly fine untill the kill file command (i have tried file.delete, and My.Computer.FileSystem.DeleteFile to try to delete the file) but in all attempts i get a "Access to the path "(pathHere)" is denied.
View 2 Replies
Jun 28, 2011
I have a asp.net application and I uses ISO-8859-1 charset. But It is not OK. In the postback, I got ISO-8859-1 keycode. But the application response next time, it is display like this. How can convert to normal fonts.
ေနေကာင္းလား
View 2 Replies
Apr 19, 2012
When I make an HTML form for MVC 3/VB with the Razor engine, I would expect to be able to do it like this:
@Using Html.BeginForm("Action", "Controller")
<fieldset>
@* Other form code and values *@
</fieldset>
End Using
But if I do that I get "BC32035: Attribute specifier is not a complete statement. Use a line continuation to apply the attribute to the following statement." I need to add an @ character before the opening tag to avoid this error.
View 3 Replies
May 6, 2011
Is it possible for a DynamicMethod to call (via ILGenerator.EmitCall -- or similar -- for instance) a 'normal' method, e.g. Private Sub BlahBlah(ByVal obj as Object)?
View 2 Replies
Apr 3, 2011
Today i am trying to convert a date i put in a textbox(txtJulian) to a normal date like 02/05/2011(or any other conversion depending what is imputed in the textbox). I cant get it to print to correct date. When I type 011-2011 it print out 1/11/2000when I want it to print 1/11/2011. Also the error messag doesnt show when I type nothing or the correct format in the txt box. Here is my code
View 10 Replies
Jun 5, 2011
i have code in which datatable values will be given in crystal report of vs2008 iam very surprised when i run my application in debug mode by pressing f10 key value all the value loaded perfect but when i start application in normal mode only one value of datatable is loaded what should i do like ?
description qty price total
pepsi 2 4 8
tea 1 2 2
in debug mode pressing f10 it show all the values but in normal mode it show only first value pepsi 2 4 8
View 5 Replies
Jul 29, 2009
when i run form his opacity 0% to 100% autometic change...
View 6 Replies
Apr 19, 2010
am trying to make a normal button as minimize and exit ... I want three different picture for example button with exit:
1) Stable opened window has exit_1.png
2) When you mose-over it it display exit_2.png
3) When you mouse-leave it display again standard exit_1.png
4) When you press it (click) it display exit_3.png => this situation i dont know how to solve in Visual Basic
My code:
Private Sub PictureBox1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox1.Click
Me.WindowState = FormWindowState.Minimized
[Code]....
View 2 Replies
Mar 14, 2009
Is this formula right just asking to see if I can make a file downloader on my own with fully working progress bar.
var/var2 * 100 = answer
View 3 Replies
May 23, 2012
I have been wondering for a while what the difference is between the following two:
Public Property ProgressMaxValue() As Integer
Get
Return maxval
End Get
[code]....
View 2 Replies
Oct 20, 2010
When I compile my solution and execute the program and set the form in window normal, it behaves strangely. The grip is apparent, the mouse changes to the appropriate icon, but I cannot change the size of the window.
View 2 Replies
Sep 16, 2011
How to show Normal form over the AxWebBrowser In Vb.Net.
View 2 Replies
Dec 25, 2009
Unable to find a normal distribution function for VB8 Found the others I needed Math.Log, Math.Sqrt, Math.Exp but no Math.ND To give an example of the problem that the code needs to do.
P = S*NORMSDIST(D1)-K*e(-Rf*T)*NORMSDIST(D2)
View 3 Replies
Mar 12, 2010
Is there any possibility to make this true?I mean we can't use { } as a normal text in String.Format()
View 4 Replies