VS 2010 - Why The Call To NewCell Won't Work
Sep 23, 2010
Public Class Form1
Structure Tile
Dim forward As Integer
Dim left As Integer
Dim right As Integer
[CODE]...
Why the Call to NewCell won't work?
View 2 Replies
ADVERTISEMENT
Mar 23, 2009
my app just freezes, and stops answering, gui freezes. Im trying to appentext to a textbox via the delegate method. What am i doing wrong?
[Code]...
View 13 Replies
May 10, 2011
i have a jQuery AJAX webmethod in ASP.Net that works perfectly fine when tested locally. but when uploaded to the server, sometimes it works sometimes it doesnt. when i debugged the code with firebug i see the the webmethod gets called but jumps right away to the error section of the ajax script.
jQuery code:
<script type="text/javascript">
$(document).ready(function () {
//get current date
[Code].....
View 1 Replies
Jun 10, 2006
I have a problem with the RichTextBox on my form. The problem is that the zoom factor of the RichTextBox control does not work if I call the "Display()" sub more than ones. Does any one know what would be the problem? Here is the sub I am using to set the text on the control.
VB
Private Sub Display()
' Enable users to select entire word when double clicked.
DisplayRTB.AutoWordSelection = True
[code]....
View 3 Replies
May 25, 2012
I am trying to convert a DLL function call which has the Callback function routine called within the DLL function call.The DLL function call signature is like this:
typedef void *HANDLE;
typedef HANDLE HACQDESC;
DECLARE_HANDLE (HWND);
[code]....
how to convert this DLL call to VB.NET and also how to create the callback function and send it as parameter to this function
call.
View 15 Replies
Apr 20, 2010
I have the following extension method. However, when I type "File." this method doesn't pop-up. What did I wrong?
[Code]...
View 1 Replies
Oct 2, 2010
My name is malky, a programming student currently learning visual basic 2010. I mostly know basic level of programmming (such as playing around with textboxes and such) and for my next project, I need to be able to call an executable file (the On Screen Keyboard to be exact) as my program first loads.
View 18 Replies
Jun 5, 2012
This might be a dumb question, but is it possible to call the beginning of a class from a different part of the same class?Here's the scenario... I have a class which has several subs in it. One of the last subs features a conditional statement. If that conditional statement is true, then I want the class code to be executed again, from the very beginning of that class.
View 4 Replies
Mar 6, 2011
I am still learning about Get / Post statements in VB, and wondering if you have to call the Get commands to images, and what not, or just the main Post / Get statement and the rest will auto-load?
View 1 Replies
Sep 24, 2011
I am trying to call the below from another procedure in another class. The problem is that I am not passing the right parameters on (apparently). What value (and how) do I need to pass on as e?
Public Shared
Sub
DrawFarmFields(ByVal
sender As
[code]....
View 6 Replies
Feb 8, 2012
I am trying to create a project in VB 2010 like I have in VB6. In VB6 I have a parent form which opens a child form. The child form displays calls (customers) on a spread sheet control that are on hold. The user selects the call in the child form, it calls a sub in the parent form passing a record number to identify the customer. The parent form then "pulls" up the call and and connects the user to the caller with all of the customers information.So, I haven't done this in VB NET and I have searched to see if this would be done the same way in .NET as it was in VB6, but I haven't found much decisive information. Is a parent/child form the way to do this?
View 10 Replies
Jul 4, 2011
I just installed Microsoft Ribbon for WPF 2010 on 2 different windows 7 boxes. If I make a .net 3.5 project it works fine but a .net 4.0 it does not.I can load the sample ribbon application and it works but when I drag the ribbon controls over they just make a transparent box. I notice it does not make the XAML correct. Here is the code, 4.0 on top then 3.5 below it. Is there some setting or option I need to change?
<ribbon:Ribbon Height="136" HorizontalAlignment="Left" Name="Ribbon1" VerticalAlignment="Top" Width="618" />
<ribbon:RibbonGroup Height="100" HorizontalAlignment="Left" Margin="72,36,0,0" Name="RibbonGroup1" VerticalAlignment="Top" Width="200" />
[code]....
View 1 Replies
Sep 7, 2010
Does anyone started to work with VB 2010?. I have to migrate an application from VB6 to a new language and I've decided that I will rewrite the application on VB 2010. Well, I am here in front of the new flash 2010 and I have no idea where start. ja!
View 8 Replies
May 18, 2010
how to get a keydown even to work but in 2010 this seems to have changed
Private Sub Form1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles Me.KeyPress
If e.Keycode = Keys.Enter Then
MsgBox("test")
End If
End Sub
Apparently "KeyCode" is not in use anymore..
View 4 Replies
Jul 1, 2011
VS 2010 application don't work?
View 6 Replies
Mar 21, 2011
I have a problem with this Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown If e.KeyCode = Keys.F7 Then
MsgBox("works")
End If
End Sub
It work if Form1 has nothing on it. If I add buttons, listbox, etc. does not work. Why?
View 4 Replies
May 16, 2012
My application is looking for .Net Framework 4.0 but I only have 3.5 on my machine so I get an error.How can I get my application to work on 3.5 only?Is there some code which is 4.0 code only? which creates this error?As this is corperate computer I can't upgrade to 4.0 myself either.
View 4 Replies
Dec 31, 2010
I've written one pgm that used byte serialization to save a file. It eventually morphed into a program and a library class (dll) so I could save/retrieve the byte serialization/desrerialization file from a different program that would use the same dll that originally serialized file in the first program. But, the first program seems to own the serialized file, not the DLL. The first progam is GenerateEventList and has the added reference Imports EventDBS which is the DLL. The second program EventDisplay also has Imports EventDBS to read the file. It produces the exception:
View 4 Replies
Apr 23, 2011
basically I am creating a program that needs to call a html onclick event.The html code looks like this:
Code:
<li>
<span class="yt-uix-button-menu-item addto-item" onclick="yt.www.addtomenu.saveToFavorites(this);">
Favourites
</span>
</li>
I tried saying webbrowser1.navigate("yt.www.addtomenu.saveToFavorites(this);") but this doesn't work?
View 2 Replies
Apr 27, 2012
I have a button on a form that is supposed to run an executable (compiled Intel Fortran v11) on the click event. Here is the code:
Private Sub RunButton_Click() Handles RunButton.Click
Try
System.Diagnostics.Process.Start("C: estDir estCode.exe")
[Code]....
I'm certain the path is correct and I have verified that running the testCode.exe from the cmd window works as it should (testCode.out file is updated). When I try to run the process via the RunButton it appears to work...no errors are reported or caught. However, the expected output file is not updated indicating testCode.exe did not execute. All of the online support I have researched indicates this should work.
View 8 Replies
Aug 19, 2010
I have created a Windows Service that I am trying to use to call an Emergency Alert program that checks a database to see if there is an alert to display. This is the Timer in the Windows Service that I call the Emergency Alert program from.
[Code]...
View 1 Replies
Mar 9, 2012
I'm using Microsoft Visual Studio 2010 Express: the C++ and VB versions.
There is some VB code that forms the body of a program, and all the GUI.There is also some C++ code that does some fast processing (lots of loops).
I am trying to call the C++ code, compiled as a dll, using:
Private Declare Sub CalcGraph Lib "Model.dll" ()
And at the moment keep getting the error: Unhandled exception has occurred in your application. Unable to find an entry point named 'CalcGraph' in DLL 'Model.dll'I'm fairly new to programming, so please be patient with me That said, I'm prepared to do the leg-work, and have already spent quite a while reading around on this and other sites. Nothing seems to match quite well enough to help me understand what's going wrong.
View 3 Replies
Feb 16, 2012
I've searched the Internet and found this to be a common problem, but couldn't find an example like mine, so didn't manage to find a solution that works.I have a DGV where the columns are added at design time and the rows are added programmatically using a simple loop. Here it is:
vb
For Each iRow In iDS.Tables(0).Rows
If iRow("rIndex").ToString = rIndex.ToString Then
myDataGrid.Rows.Insert(count)
myDataGrid.Item(0, count).ReadOnly = True
[Code]...
View 6 Replies
Feb 15, 2012
I'm trying to learn how to work with Collections list. In the past, if I wanted to create a list I would use an array and then save it to a text file after I was done manipulating the data via CSV.how to save things of different types to a list such as:
Name, Birthdate(as date), Salary
I know how to do this in an array but all the synapses aren't firing with the "new to me" collections list as collections lists are hard typed....
View 2 Replies
Jan 13, 2011
I have a form in visual basic 2010 in design view. And when i debug the form. the button i have put on the form does nothing. i want the button that i added, to do what the add new item does on the toolbar at the top of the form the code i have now is
Public
Class
Form1
Private
[code]....
View 6 Replies
Nov 13, 2010
The Windows > New Window command still does not work in Visual Studio 2010.
This is SO 20th century having to edit only a single window at a time, only having that split screen.
View 8 Replies
Mar 24, 2012
Better Explaination of question: Is it possible to work on the same vb project at the same time?
I searched over google for help and I found a forum but it looked very complicated and I diden't feel like screw stuff p so can someone please give me a link or tell me how?
View 4 Replies
May 26, 2011
So I am trying to code something in vb.net 2010 which will have a list box. For example:
1) Apple
2) Pizza
3) Juice
How would I display Line number 2 or any other to the user - I tried doing it with a label box like this Label1.Text = ListBox1.Text(2) - does not work.
View 2 Replies
Sep 30, 2011
I want to change my default keyboard Layout for a installed another Keyboard Layout using my VB application.I googled about this and find Function LoadKeyboardLayout() Function to do that.But Is this support in vb 2010.When I wrote below code and there is no syntax error.But when I run the program there is an error called "PInvokeStackImbalance was detected." How can I solve this in vb 2010. Here is my code:
[Code]...
View 1 Replies
Jul 1, 2010
I have two questions.
1- I have two labels on a form, that I want to move randomly in the form. How can I do that?
2- How to work with collision detection in VB?
View 29 Replies