Can Make 64bit Applications

Jan 23, 2010

VB.NET 2008 can make 64bit applications?

View 5 Replies


ADVERTISEMENT

Make Applications More Secure?

Feb 23, 2011

I don't want my programs to be cracked. I have this simple authorization system that prompts my users to enter their forum credentials (I have a forum and the users must be registered members to use the programs).So I made a php script that will take in 3 strings sent in by my applications and it will check against the database if that user exists and is of the proper group and it will display a message on the page and my application then looks for the response in the page source which says if this particular user is allowed to use the program or not.

View 4 Replies

Make Two Applications Talk To Each Other?

Jan 18, 2010

I use several different applications for analysis of pupil data. Each of these applications require similar or identical data but because they don't draw their information from the same sources there is often a need to enter this data more than once which obviously is a waste of time. Some of the data is accessed through the intranet via IE, other applications are standard Windows apps. I would like to create some sort of bridging application to allow data to be automatically shifted from one location to another but have no idea how to use one application to control another

With regard to getting data from the intranet, I have managed to write an application that can retrieve some (but not all) data off a particular page of HTML. It does this by searching the source HTML but some of the data that appears on the page isn't present in the source file. This is very frustrating because I can see it in the browser but can't seem to access it through my application.

View 4 Replies

Make Web Applications And Designer.vb?

Jun 15, 2010

I have two web applications that have been migrated over many version of visual studio dating back to 2002 ( I think ).. I'm currently trying to get these applications to act the same in Visual Studio 2010 Premium.App1 - Has designer.vb attached to the pages, and I can see them in the IDE. When I publish the site, it does not want to automatically delete all of the existing files on the target webserver. When I right click -> Properties, a window opens up with lots of web site specific options.. such as Application, Compile, References, Web, Package/Publish Web, Package/Publish SQL, Silverlight Applications.. etc. There is also the option in the right click menu to "Convert to Web Application", which doesn't seem to do anything after the prompt.. and the option for Convert never goes away.

App2 - Does not have designer.vb pages visible in the IDE. When I publish the site, it wants to delete all existing files first.. I'm guessing this is some kind of pre-compile option. When I right click the project -> Properties.. all I see is the smallproperty window, and I don't see any website options like Silverlight or any that App1 gets. There is no 'Convert to Web Application' option.I can not get these two apps to 'act' the same.. and I don't even know which is acting as it should? Both apps work, and publish fine.. they are justing annoying in the IDE that they are so different. What can I do

View 2 Replies

Make A Class That Can Be Referenced In From Other Applications?

Dec 13, 2010

I am wanting to make a class that can be referenced in from other applications. In this class I simply want to do a showdialog to a form. That form has a ssrs pre-defined within it and a viewer all set to show the report. But when I try and define that action I get that my form is now declaired

Imports System
Imports System.Drawing
Imports System.Collections

[Code]......

View 3 Replies

Make A Patch For Already Installed Applications?

Jun 20, 2009

I made an client server application in vb.net and it is alredy installed among various clients.The problem is i found a potential bug in ma application, so i want to make patch for ma apps(Like a update files that can be downloaded

View 1 Replies

Make Applications Startup Faster?

Feb 15, 2012

Well my application is 37 KB size, but when i start the program it took like 10-15 sec to startup, is there a way or code to make my applications run fast and fresh?

View 2 Replies

Make An Application But That Isn't Visible In The Taskmanager -> Applications?

Nov 2, 2009

Is it possible to make an application, but that isn't visible in the taskmanager -> applications

View 39 Replies

Make Applications For Android Phone Using Program?

Feb 21, 2011

Is it possible to make applications for the Android phone using VB .NET?

When I searched this, I found stuff where people talked about it, But I didn't find any guide on how to do it or anything that I'm looking for.

View 2 Replies

Make Buid/release In Window Applications

Feb 24, 2012

i made a some changes in my window application at local host , now i want same on clients machine where source code is not present only dll are present,, how i made changes there or how to make build???

[URL]

View 9 Replies

Make Applications In Free Version Of Express And Use Them On Other Machines?

Nov 19, 2011

Can I make applications in the Free version of VB Express and use them on other machines?

View 9 Replies

Controlling Outside Applications - Resize Multiple Applications And Send Keystrokes To Each One

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

Make Applications Stop Having The "Not Responding" Business?

Apr 24, 2009

how to make applications more responsive.I haven't been able to figure out how to make my applications stop having the "Not Responding" business.I've tried delegates and thread sleeping to no avail I don't know if I'm just placing them wrong or what[code].....

View 2 Replies

Connect Different VB Applications To A Database Server.like Accessing Data From One Database By Different Applications?

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

Why Will This Run In 32bit, But Not 64bit

Jan 18, 2010

I'm using the following code to iterate through and find windows containing specific strings in their title bars. I have two projects containing this identical information, yet for some reason - it works when targeted to x64, but FindWindowLike returns 0 always on x86. I need this to run in x86.I am developing this on Windows 7 x64, but it needs to run on my machine as well as XPx32. What I can't fathom is why it compiles/runs on x64 but not x32 (considering I'm targetting user*32*.dll)

View 2 Replies

Running Applications Within Applications?

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

.Net ReadProcessMemory Windows 7 RC 64bit?

Sep 20, 2009

i wrote a programm that reads the memory of a program.it worked at xp and vista but not at windows 7 i builded it with microsoft visual basic 2008 express edition.the code looks like this:

Public Declare Function GetWindowThreadProcessId Lib "User32" (ByVal hwnd As Integer, ByRef lpdwProcessId As Integer) As Integer Public Declare Function OpenProcess Lib "kernel32" (ByVal dwDesiredAccess As Integer, ByVal bInheritHandle As Integer, ByVal dwProcessId As Integer) As Integer Public Declare Function ReadProcessMemory Lib "kernel32" Alias "ReadProcessMemory" (ByVal hProcess As Integer, ByVal lpBaseAddress As Integer, ByRef lpBuffer As Integer, ByVal nSize As Integer, ByRef lpNumberOfBytesWritten As Integer) As Integer

[Code]...

View 4 Replies

64bit Index For An Array?

May 18, 2010

Can I use Long for array indexing? If no what could be done to manipulate large byte arrays (>32bit)?

View 5 Replies

API, Kernel32 On 64bit Machine?

Nov 7, 2010

coming from VB6 I've been using the windows API for many years. Now I'd lke to do the same on .NetMy question is, what would happen if I build for 'AnyCPU' and the application calls Kernel32 while running on a 64bit machine ?

View 1 Replies

Building For Windows7 64bit

Jan 7, 2011

I have an application that I built in VB.Net 2008 on Windows XP for Any CPU that I would like to run on Windows 7 64bit. Is this possible from Windows XP or do I need to compile and develope on Windows 7 64bit for it to work?

View 10 Replies

Check When System Is 32 Or 64bit?

Feb 6, 2010

There are a few threads on these forums about this question, but I need a definite answer.

View 10 Replies

Create A 64bit Application?

Aug 20, 2009

I am using Visual Basic 2008 Express Edition and I want to create a 64bit application, but don't know how.

View 9 Replies

Get RTF To Print In Win7-64bit?

Oct 14, 2010

Depending on what component is handling the print for you, some of them are not 64 bit ready (i.e. 32 bit only). To use them you must compile your application as 32 bit only. It will then run on the WOW platform that Win7 supplies.

You change this option on the PropertiesCompile screen. Press Advanced Compile Options and review Target CPU:

View 1 Replies

IDE :: Debug Not Working In 64bit?

Oct 12, 2011

I've downloaded the 64bit debug symbols and told the IDE where they were located. But for some reason, VS won't build a 64bit debug EXE.

This is my first time doing 64bit so I never had to worry about it before. Is there something I need to do in the IDE that I don't know about? I went to Project Properties and set things to 64bit debug. But when I compile the program, it makes a 32bit program.

View 2 Replies

IDE :: Running .Net Application On 64Bit OS?

Nov 2, 2010

will .net framework3.0 application run on 64 bit operating system

View 5 Replies

Moving On To Windows 7 - 64bit?

Dec 9, 2010

I'm getting a new laptop with pretty free hands as to what to get.Most I like come with Windows 7 64bit and I'm a bit cautious about that as I have Vista 64bit on a stationary at home. Not completely happy with that.

I have learned that the Jet database - that I use a lot - does not run on Vista 64bit, but how's the story with Windows 7 64bit. As I will be doing a lot of programming on the new laptop (and I need to get moving again soon - busy!!) I would like to know of potential problems up front.

I'm using Visual Studio 2008 programming VB.Net

View 3 Replies

Old Vb6 Ocx Isn't Working On Some Windows 7 64bit?

Nov 1, 2011

I have an old 32bit vb type app and we're running it on windows 7 64bit sp1. On one computer it works fine, on another it doesn't work right. Do you know how we could debug this and figure out what's causing it? Could a different CPU or bios/chip set have something to do with it?

This is the thing we're using specifically:[URL]...

View 2 Replies

Read From A DBF File On A 64bit OS?

Mar 15, 2011

How to read from a DBF file on a 64bit OS using VB.Net?

View 3 Replies

Register MSCOMM32.OCX In 64bit OS?

May 24, 2011

When I'm trying to register this it gives an error.

View 4 Replies

Run A Vb6 Application On 64bit OS Instead Of 32bit OS?

May 22, 2009

I had a vb6 applications which using following dll files 1. shell32.dll 2. user32.dll 3. comdlg32.dll 4. apigid32.dll. It is working fine on vista 32bit OS . Now i am trying to run my application on Vista 64bit OS.

Is it working fine on vista 64bit OS with out any changing in vb6 code?Is there any problem with this above mentioned dlls on Vista 64bit OS?

View 3 Replies







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