VS 2008 Strange SuppressKeyPress

Jun 28, 2011

I want to supress a key for a textbox: [code]this is working, B key is supressed,but adding just a messagebox will not work..[code]

View 1 Replies


ADVERTISEMENT

Control Keyboard Entry By Using SuppressKeyPress Method

Apr 2, 2012

I use VB in VS2010..My form has a textbox..I can control the keyboard entry by using the SuppressKeyPress method..However this does not work for the Menu key - I think it's the menu key - the one that looks like a combo with an arrow.This produces a large drop-down menu which I don't want.On checking various forums it appears that the following code should work..[code]

View 1 Replies

VS 2008 Strange Cmbbox

May 29, 2009

I got kind a mystery situation. There's not a lot of code, only few lines but the point is that it only works partially (it saves but does not load).

I tested it with another cmbbox1, which makes it work on seperate cmbboxes but not on either one or onother on their owns.[code..]

I got other cmbBoxes with titles on them loaded from the DB and they work fully, only this one doesn't.what should I look at?

View 15 Replies

VS 2008 Get Strange Numbers For The Output?

Oct 23, 2010

I am working on a program that takes 12 numbers that the user inputs and calculates the total and average but every time I run it it comes out to be like 6.5 and numbers like that.

' Store the starting values in total and count.
sngTotal = 0
intCount = 1

[code].....

View 2 Replies

VS 2008 Strange Output By Use Of LineInput

May 31, 2012

i'm using lineInput to read a text file but get a problem with a certain record.it shows [code]I've changed the encoding to utf8, ansi, ... but nothing helps. Anybody an idea what could be the cause?It only does this with the first record in the file.

View 3 Replies

VS 2008 Simple Threading But Strange Error

Dec 21, 2011

i have tryed using multithreading with my program with no luck/I just get a strange error thrown at me no matter what i try [code] Then i get this error:An error occurred creating the form. See Exception.InnerException for details. The error is: ActiveX control '6bf52a52-394a-11d3-b153-00c04f79faa6' cannot be instantiated because the current thread is not in a single-threaded apartment.

View 13 Replies

VS 2008 Strange File Not Found Error?

Jul 20, 2010

I have a program that looks for a file named 'license.dat' upon startup. The program first checks the directory it's in, and if the license file isn't there, it prompts the user to select the license file with a file browser dialog. I have tested this code and confirmed it working in a number of different OS environments.Recently, I received reports from two users (one in Germany and one in Italy) that the program can't find the license on their computers, even though it is present in the program's directory and they manually selected it with the file browser dialog. The only commonality I'm seeing here is a lack of English OS, but beyond that I'm stumped.This is the code I'm using:

If System.IO.File.Exists(System.AppDomain.CurrentDomain.BaseDirectory + "license.dat") = False Then
File dialog code goes here

[code].....

View 5 Replies

VS 2008 Strange Recursive Directory Copy

Mar 19, 2009

I am using the following Recursive Directory Copy code, and am having a strange issue. I am using this to copy and directory and all subdirectories and files to removable media (flash drive). Everything copies perfectly fine except for 1 file. this occurs on the same file every time and sometimes the file copies successfully, but other times it does not.The problem file is a 7-zip archive with a .7z file extension.When it does not successfully copy, the file is only 8 bytes on the flash drive.[code]

View 5 Replies

Strange Behavior Between SQL Server 2008 R2 And VS2010 (Win7 And WinXP)

May 16, 2012

I develop my VS2010 project in my laptop with SQL 2008 Standard. In my laptop everything is working good, using the following connect string as global public string when the main form loads:

[Code]...

View 12 Replies

VS 2008 Strange Message About A Package That Failed To Load Properly

Aug 10, 2011

Suddenly today , when I started my computer and went on to open the VS , I got this strange message: Do you know what it might mean ? I didn't installed anything on my PC for a long time, so I can't think of anything ...

View 8 Replies

"SuppressKeyPress Is Not A Member Of SystemEventArgs"?

Oct 29, 2009

Why wont this work , im trying to set it so that when i press enter it will navigate my browser instead of having to click the button

on the code it says "SuppressKeyPress is not a member of systemEventArgs"

Private Sub Button2_Enter(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Enter
If e.KeyCode = Keys.Enter Then
WebBrowser1.Navigate("http://www.google.ie/search?q=" + TextBox1.Text)
e.SuppressKeyPress = True
End If
End Sub

View 6 Replies

VS 2008 Strange Error Due To "An Attempt To Free An RCW That Is In Use"?

Mar 7, 2011

Have you ever heard about that error ? It happened to me when I used code to Close an open form . But this very strange . Not only I have used this simple code (Me.Close) in numerous forms but it also happens in a weird way . You see , I have a form with a button on it . The code in the button's Click event sais Me.Close . Also , this button is set to be the Cancel button of the form . Now , when the user closes the form either by pressing the X button or by pressing the above button , nothing happens . However , and this is very weird , when the user presses the Esc key on the keyboard , the program crashes with this error message :

[Code]...

View 8 Replies

VB Dll Strange Output In C#

Aug 11, 2011

Module Module1 Public Declare Function GET_CALCULATION_FAN_ALONE Lib "EbmPapstFan.dll" (ByRef path As String) As Long Private Declare Function GET_PRODUCTS Lib "ebmpapstfan.dll" (ByRef path As String) As Long Public Declare Function SET_XML_PATH Lib "EbmPapstFan.dll" (ByRef path As String) As Long

[Code]...

View 2 Replies

C# - ASP.NET CSV Excel With Strange Characters

Mar 15, 2010

I'm exporting a table of data to CSV format, e.g.:

"COL1","COL2","COL3"
"1","some text", "£232.00"
"2","some more text", "£111.00"
"3","other text", "£2.00"

The code to export is fairly simple using an ashx handler:

[Code]...

My issue is when Excel tries to open the exported file the character appears before all £ signs, e.g. £232.00 when the value should be £232.00.

View 1 Replies

Serializing XML With Strange Namespaces?

Jul 14, 2011

Question: How does the class for the serialization of this XML content look ?

<?xml version="1.0" encoding="utf-8"?>
<vcc:CreateTextSearchResponse xmlns:vcc="urn:veloconnect:catalog-1.1" xmlns:vct="urn:veloconnect:transaction-1.0">

[code]....

View 2 Replies

SQL Keys Acting A Little Strange?

Jun 15, 2011

I have a bit of a strange problem with MySQL that I've never seen before. Basically, I need to enter the same entry into a table x number of times. The Primary Key is auto increment so there shouldn't be any duplicate value problems. However, it takes the last few columns and seems to clump them all into one value and is using that as a key. The error I'm getting back is:Duplicate entry '80-0--2011-06-16-0-1' for key 'idx_mtind you, there is no field called idx_mt. The primary key field is called just ID. And that 80-0--2011-06-16-0-1 is the last 8 columns or so (which you can see the names of in the cols variable) concatenated, which they obviously shouldn't be doing. Also, the first time the loop runs through, the entry goes through, but the later ones conflict with it. I confirmed that this is the problem by changing one of the last 8 columns to a value based on a loop, and that went through with no problems.

Dim cols As String = ""
Dim msi As System.Globalization.DateTimeFormatInfo = New System.Globalization.DateTimeFormatInfo()

[code]...

View 1 Replies

Strange COM Behaviour Called From .net?

Oct 13, 2010

i am working on an application which calls the COM component of a partner's application.Ours is .Net, theirs isn't. I don't know much about COM; I know that the component we're calling is late-bound i.e.obj As Object = CreateObject("THIRDPARTY.ThirdPartyObject")We then call a method on this COM object (Option Strict Off in the head of the VB file):obj.AMethod(ByVal Arg1 As Integer, ByVal Arg2 As Integer, ByVal Arg3 as Boolean)I am a bit nonplussed that even though this call works, this overload doesn't exist in the COM interop .dll that is created if I instead add a reference to the COM server using Add Reference. The only available call to this method that it says is available is AMethod().

View 3 Replies

Strange ConFig Error?

Mar 8, 2011

this one has me stumped - problem is bolded

Compiler Error Message: BC30456: 'Login1_Authenticate' is not a member of 'ASP.login_aspx'
<asp:LoginView ID="LoginView1" runat="server">
<LoggedInTemplate>

[code].....

View 6 Replies

Strange Tab Control Cut Paste?

Jan 15, 2010

ok I have a form.. has too much.. so I want to now use tab controlin VB6 I would delete then paste the object into the tab control andI recall it worked ok..with vs08 I cut and paste and looks ok.. but doesnt work..lets say I had button btnInstall when I paste it over its that name.. butwhen I click on it now.. it goes to btninstallButton_Click_1why did it put the _1 on there ? I didnt copy and paste .. I cut..

View 6 Replies

Asp.net Strange Exception Every Three Minutes Approximately

Mar 14, 2012

I am trying to make a very simple aspx page that pulls some data from a mysql database.
The page builds without a problem. (the aspx contains just the default form and a div just to print some data)

[Code]....

View 1 Replies

Automated Outlook Behaving Strange?

May 23, 2011

I&#65533;m using Outlook to automatically send an email to my mobile phone. To bypass the stupid "security" bug in outlook I use redemption.safemailitem.Now, this has worked for years, but for some reason I can&#65533;t change the adress to which outlook sends the mail. Instead of sending to the adress in the code, it sends to an old adress that&#65533;s not anywhere in the code (but it was, ages ago)

View 6 Replies

Communications :: Get Local IP (Strange Return)?

Jun 24, 2008

It seems to be the general consensus from most places I have looked that the following code

Code:
Dns.GetHostEntry(Dns.GetHostName).AddressList()
Is the correct method of getting the local IP address of a machine, and when run against

[code]....

View 5 Replies

Creating An Xml String In .net And Having Strange Errors

Apr 13, 2011

I cretaed a vb application where I concatenate a string to build XML code and Im getting an error stating that I must include a matching PURCHASE-ORDER-SHIP-TO end tag which clearly exists see below:

sMyXml = sMyXml + " <PURCHASE-ORDER-SHIP-TO>" sMyXml = sMyXml + " <DIRECT-QUESTIONS-TO>ATHOS PETROU</DIRECT-QUESTIONS-TO>" sMyXml = sMyXml + " <address:ADDRESS xmlns:address=""http://www.removed"">" sMyXml = sMyXml + " <address:NAME-LINE-1>Addr1</address:NAME-LINE-1>" sMyXml = sMyXml + " <address:NAME-LINE-2></address:NAME-LINE-2>"

[Code]...

View 3 Replies

Get Rid Of All Strange Characters That Can't Get Into Mysql From A String?

Mar 14, 2012

I have a problem with strange character.

In mysql this character 💀 cause error Incorrect string value: 'xF0x9Fx92x80'

Samples of these characters are from [URL]

Say I want to analyze data from the web and found some strange character

how to remove this character 💀 ??

The occurance is rare.

In fact, how to know all characters that may be problematic for mysql and remove that? I am not saying escapeable characers. I am saying characters that are neither numeric, alphabeth, or chinese scripts, or punctuation. Characters that's totally bizarre.

How do I get rid of that from a string?

View 1 Replies

PSP Sync Program Strange Error?

Jul 26, 2008

Its a Program i created to Sync PSP with my PC (like psp manager)you browse through titles (images) add/remove/sync options plus aconnectivity test but when i start the "Sync.exe" VB Studio 2008 saysthat theres a problem with this code:

Dim Bypass
Dim Value As Short
Bypass = FreeFile()

[code].....

View 7 Replies

Strange Characters When Using Stream Writer

Aug 22, 2009

I am having a strange issue when using the StreamWriter where I am getting some strange charachers in my text file when reading data from a query string.

[Code]...

View 3 Replies

String Char Strange Appearance In XML

Feb 17, 2011

Why when I wrote in a xml the char "&" it appears &amp; ??

View 3 Replies

.NET Forms Behave Strange On Design-time?

Feb 20, 2009

I'm developing with VB.NET 2008.One of my host was crashed, so I take the files and keep development on another host. But now something strange is happening:All frames, lines and shapes are disappeared on design-time, but are seen normally in runtime.

[Code]...

View 1 Replies

AutoIncrement Column Strange Behavior On .mdb Files?

Aug 1, 2010

After a successfull bindingsource.AddNew(), .EndEdit(), TableAdapter.Update(), i'm trying to get the value of the PrimaryKey from the newlly added record wich is always = -1!

Private Sub BtnNewClient_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnNewClient.Click
If BtnNewClient.Tag = "New" Then
SetClientLayout(ClientLayouts.CLNew)
Me.ClientsBindingSource1.AddNew()

[code]....

View 3 Replies

C# - DotNet DateTime.ToString Strange Results

Dec 15, 2009

Why does: DateTime.Now.ToString("M") not return the month number? Instead it returns the full month name with the day on it. Apparently, this is because "M" is also a standard code for the MonthDayPattern. I don't want this...I want to get the month number using "M". Is there a way to turn this off?

View 6 Replies







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