Getting To A Level Below

Jul 8, 2011

Hi Friends,

Hope you all are doing fine.

Brief

I have been into learning VB 2010 Express for around 2 months now; I have been doing it primarily on weekends with a nice book by James Foxall. At the moment I am in Chapter 22 of 24. I have been able to make some sense on what he says but have
been able to follow him well. I plann to read the book in full twice before doing with it at the end of August 2011.

Today's Question

In one of my previous threads 'Becoming a Programmer' @Renee Culver encourages me to try to get to a level deeper. There are many other experienced programmers who have given adivce with equal 'punch' but I like to begin with @Renee Culver's
approach.

James Foxall guides me learning smoothly but I now at the 22nd chapter out of 24 feel a little uneasy. It feels like James tells I do. In Chapter 22 dealing with automation he guides me to work on Excel through VB. The reference to the Server is
set through the VB interface. I like to know how to get to a level deeper on this today. Instead of using the VB interface can't I establish reference purely through VB code? During this weekend I like to try accessing the Google start page
Combo to get search results for 'Novak Djokovic'. Could you help me?

Thank you Friends.
ss

View 5 Replies


ADVERTISEMENT

Application-level KeyUp/KeyDown Events (not Windows Form-level)?

Apr 1, 2012

I am creating an Excel add-in written in VB.NET. I would like to bind KeyDown and KeyUp events to the spreadsheet to record when the user presses and releases the arrow keys while navigating the spreadsheetIdeally, these events would be built into Excel alongside the native SheetActivate and SheetSelectionChange events, for example. Alas, they are not.

View 1 Replies

What's The Difference Between Dim On The Member Level And Static On The Procedure Level

Jan 6, 2010

In Visual Basic 2008, there's two different ways that I know of to accomplish the same thing:The Dim on the member level:

Dim counter1 as integer = 0
Dim counter2 as integer = 180
Public Sub SampleSub1()

[code].....

View 1 Replies

Top Level SQL Table Row - Save The Top Level Automatically?

Mar 18, 2011

I have created a simple program which uses a two tier structure of SQL Tables.At the top level, one record holds the date of the activities and linked to it using its primary key as a foreign key, three subordinate tables hold time stamped records.The issue I have been unable to solve is that before adding any of the lower level records for a given date, a newly added top level record must be saved to the database.Doing this manually is simple - but can I rely on my users to remember to do this before they start plugging in the lower level data?I thought not, so I am looking to save the top level automatically.I've failed miserably but I refuse to believe that it's not possible.

View 14 Replies

Multiple Level Of For Each And Linq In Each Level

Feb 12, 2011

I have multiple level of For Each and in each level, i have a Linq that is the 'In' criteria as in:

[Code]....

It will go inside each for (because the value is not nothing), however, it will only loop (next) in the very inner 'For Each t In tFor'. After it is finish inner loops, the outer Fors' or Next will not execute... even thought there are more than one values in that 'In'... like 'sFor' or 'fFor'. i've noticed while debuging, while break at the for (for example 'sFor', before stepping in), i get the error message:

"Enumeration yielded no results" when i expand the result for that variable and it will not step into it. but if i do not expand the result, it will step in. It seem that some how, once an element is accessed for that 'In' collection, it breaks (meaning does not loop for the rest of the elements) the next for that collection is this a bug or am i missing something in Linq? BTW: i believe it has something to do with the SqlDataReader in the Linq. I'm working with IAsyncResult.

View 5 Replies

Import A Platinum Level Advisor .jar To Use With This Platinum Level Product Key?

Nov 10, 2009

U0161 import a Platinum level Advisor .jar to use with this Platinum level product key.How I can get this and import it to continue my completion of setup of mysql download?From where I can download that file?To enable this application, please provide a MySQL Enterprise Product Key or your MySQL Enterprise credentials.

View 1 Replies

C# - What Should Go Into A Top Level Namespace

May 7, 2009

What should go into the top level namespace? For example, if I have MyAPI.WebLogic,MyAPI.Compression, etc. If I put classes into the top level namespace, am I violating the principle of encapsulation?

View 5 Replies

How To Monitor Mic Level

Feb 10, 2008

I want to be able to have the Level of my Mic in my Form. I want a Progressbar that tracks how high my voice is just like in Windows Movie Maker or In Msn Messinger when you are doing a voice Chat there is a Progressbar like object that shows how loud it is...

View 17 Replies

Low Level Disk I/O

Feb 25, 2009

I want to do low level disk I/O using Visual Basic 2008.Particularly, I want to do track/sector read/writes to a disk (or equivalent hardware)Also important is to discover number of tracks/sectors available.

View 1 Replies

Read Xml More Than 2 Level?

Sep 15, 2009

ihave problem when read xml file. some xml file with level more than 2 level.i want put the result in datagrid. i have no problem when read simple xml like this:

[Code]...

View 7 Replies

Tic Tac Toe Difficulty Level?

Apr 9, 2010

In my tic tac toe game I'd like there to be three different levels; easy, medium, and impossible. There are 2 forms; the difficulty level form and the main game form. When the game first starts the user will be prompted with the difficulty level form which contains 3 radio buttons; easy, medium, and impossible.

I've coded three different functions based on the difficulty level; easyMove(), medMove(), and impMove(). These have all been coded in the main game form. How could I run the respective function based on the radio button that was selected in the previous difficulty level form?

If it was on the same form it wouldn't be a problem but because it is on a different form I'm unsure of how to do this.

View 15 Replies

.exe Files Security Level?

Jun 17, 2011

.exe files security level

View 13 Replies

C# - Why Isn't There A Trace Level In Log4Net

Sep 8, 2009

I was just wondering why there isn't a trace level in log4Net. This level seems to be missing and I sometimes feel the need to use it, for example to output what events are being executed in an application. This feature is a part of log4J. I know I can create a custom level like is talked about here but I don't want to put time and effort in something I feel should be part of the library itself. Do you know about a log4net extension library which implements this or why this wasn't a part of the port to .net ?

View 3 Replies

Get Just The Top-level Text Of An XmlElement?

Sep 11, 2009

Suppose I have some XmlElement; let's call it element. If I want to get all of the child nodes of that element, I can call element.ChildNodes. If I want the text of the element and all its children, then I can go with element.InnerText.

[Code]...

EDIT: Sorry I didn't specify this initially: I'm looking for a solution not involving LINQ (we're in the Dark Ages over here with .NET 2.0).

View 6 Replies

Get Microphone Input Level In VB?

Feb 1, 2010

I am a beginner in VB, and I would like to make an oscilloscope display - showing voltage level of microphone input.

View 3 Replies

Get The Microphone Input Level?

Jan 25, 2010

for an application I need to get the microphone input level and "display" it with a ProgressBar.

View 2 Replies

Get Usb Microphone Input Level?

May 10, 2010

How to get usb microphone input level ?

(i am refering to peak volume input)

what import statement, source code to use ?

View 5 Replies

Getting The Critical Level Of The Products?

Feb 2, 2012

[URL]...From this link, it explains the formula of how getting the critical level of the products, but I can't imagine how to automatic-compute it because every month and every year there's a computation to be done

View 3 Replies

IDE :: Calculate The Discount Level?

Feb 7, 2012

I have a Form with textboxes,combobox and a button to calculate the discount level (comboBox) discount total (textbox), tax total (textbox) and total all these up into the total order (textbox) this is working except the discount total textbox,here's my code i have so far.[code]...

View 12 Replies

IDE :: Collapse All Top-level Regions?

Jun 23, 2010

I know i can collapse all regions with Ctrl+M, Ctrl+O - but that also collapses all of the subs/functions/properties etc within the #Region.if it collapsed all of the sub regions too - just not the subs etc.Is there a way to collapse all top level regions only? Maybe an extension?

View 1 Replies

IDE :: Regarding Top Level Control In 2003?

Feb 24, 2009

i a m using VB.NEt 2003, wat i did is , i tried to bring A FORM into a GroupBox Control by using handling method.Im using in VB 6 i got the expected output.but in .NET i m getting an error msg "cannot add a top level control to a control ". when i degug it comes from the line DirectCast(frmObject, Form).Parent = Me.gropboxso u please reply me ..

View 2 Replies

KeyDown At Form Level?

Feb 12, 2011

I want to know how to do a keydown at form level. If I am not using Form Level the right way, this is what I mean. In my Form there is nothing.I want it so when the user presses a key that it will msgbox() something.As I said, there is nothing on the form what so ever No ComboBox, Button, nothing.

View 2 Replies

Low Level Mouse Hook In VB

Aug 4, 2011

I want to hook low level Mouse hook in vb, and after that I want to save the X-axis, Y-axis and clicks(Right/Left) into database for later use or automation..But I don't understand that how should I save the X-axis, Y-axis and clicks into a MS SQL databse and later retrieve them?

View 2 Replies

Low-level Keyboard Hook

Dec 18, 2009

I'm writing a code to use it in a keyboard spy program , and I'm using hook techneque with this , but the problem is that : if I ForExamle clicked on Shift and number 2 it doesn't give me At (@), I want it to give me at (@) ..

[Code]....

View 5 Replies

Run An App With System Level Privilleges?

Mar 15, 2012

I don't know how to run my application with system level privilleges, so that it does not encounter any UNAUTHORISED ACCESS in any case and when in seen in TASK MANAGER the user shown will be SYSTEM.

View 6 Replies

Run App With System Level Privileges?

Oct 15, 2011

I don't know how to run my application with system level privilleges, so that it does not encounter any UNAUTHORISED ACCESS in any case and when in seen in TASK MANAGER the user shown will be SYSTEM.

View 19 Replies

Set System Volume Level?

Feb 25, 2010

I have an application that plays wav and mp3 files using the Microsoft.DirectX.AudioVideoPlayback.Audio()function. It works fine, and I can easily set the volume level of the playback... within limits.

That limit is the system volume level. I can set the playback level for the mp3, but if the system volume is muted or set real low it may still play softly.

So how do I set the master volume level, including making sure it isn't muted?

View 5 Replies

Sort A 2 Level Dictionary

Aug 13, 2009

I have a dictionary in VB.Net

Dim fileDetailsDictionary As New Dictionary(Of String, Dictionary(Of String, String))

In the Value of fileDetailsDictionary , I have 3 keys

key1, key2, key3

I want to sort the whole dictionary by Key3

View 4 Replies

Using Public At Namespace Level?

Mar 2, 2011

When I use PUBLIC above a Class definition, the compiler gives an error. When I put PUBLIC under the Class definition, I have to qualify the variable with the class name in order to use it in another module.

The documentation says Public can be used at Namespace level. Is there a way to be able to just use the variable name, without any qualifier, across my entire project?

View 7 Replies

VB .exe Files Security Level?

Feb 9, 2011

I am building a program and I want to distribute the program to many clients. In order to inhibit the unauthorized distribution of my program I wrote some "encryption code" that uses the MAC address of the PC that the program is installed. I give the serial number of my program (which is created by me after the client gives me the MAC of his PC), the user types this code the first time he runs the program,after that is stored to registry

View 3 Replies







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