C# - WMI And Win32_Process - Determine If 32 Or 64 Bit?

Mar 2, 2012

I wonder if there is any value I can check on win32_process to see if it is a x86 or x64 process?

[URL]

View 1 Replies


ADVERTISEMENT

Determine What OS Is Running?

Sep 17, 2009

I need to change where I save my program and support applications based on which Operating System is running.davidbell

View 1 Replies

Asp.net - How To Determine What Is Checked

Jul 19, 2010

i havea dropdwonlsit (loads on the page_load event) and a unbound CheckBoxList is based on the selection from DropDownlist, the checkboxList is display CheckBox (might be one or two or three or any numbers)..... i just want to know after the page is loaded on the browser and user click on the checkbox's, i need a way to know what checkboxs users have selected... what is the best way of doing that? so far i have come up with this...

<asp:CheckBoxList AutoPostBack="true" ID="chkbox" runat="server" RepeatColumns="2" RepeatDirection="Horizontal" RepeatLayout="Table">
</asp:CheckBoxList>

[code]....

View 1 Replies

C# - Determine The Which Adapter Is Used?

Aug 25, 2011

I have a need to figure out which adapter is used when a connection is created. In other words, if I have multiple NIC cards (i.e. wireless, lan, etc) on my machine, which card is being used for the connection?

If anyone can point me in the right direction...

View 3 Replies

Determine Datagrid Add Row?

Jul 17, 2009

I want to determine whether datagridview add new row or not.

I use rowadded event but when i load my form , That event raise many t�mes = number rows.

View 14 Replies

Determine Device IRQ In .Net

Mar 22, 2012

How do you retrive a given device IRQ in VB.Net? I can find no examples of this anywhere.

View 4 Replies

Determine If Aero Is Using

Aug 15, 2009

I'm intend to use Aero glass in my program. It require use Black background to use this. If user is using Basic style, it will be very bad :( (although there's no error). How can I know if user is using Aero?What is big but light?

View 6 Replies

Determine Of Windows Is 32-bit Or 64-bit Without WMI?

May 17, 2007

I can use MDI to detect if x86 or x64, but it's painfully slow. How can I quickly, using VB.NET 2005, determine if the Windows OS is x86 or x64?

View 10 Replies

Determine The DLL Path?

Jun 7, 2009

Trying to write a DLL logger that is independant of the executing application. How can I determine the DLL path?

View 1 Replies

Determine The Name Of Months

Jul 13, 2010

I want to get the name of months base on the datediff result. What i've done is that i determine first the number of months in datediff function

Datediff(Months, "13/07/2010", "13/03/2011")

The result of that is 8. Since 8 is the result i want to convert that into months witch supposed to be:

[Code]...

View 3 Replies

Determine When App Has Had Any Activity?

Nov 11, 2011

Does anyone know of a way to detect recent activity in a VB.net windows forms application?

We have a retail store where users share floor computers, the application will be on each machine and require a log in before use. I am trying to find a way to automatically close the application if it has been idle for lets say 10 minutes.

I guess I could do something similar with the current windows log on session - set a gp that logs the user out after 10 minutes of inactivity - but if there is an easy, non memory intensive way to do it in vb.net i would rather use that method

View 4 Replies

How To Determine If DateTime Is Not Set

Jan 11, 2010

In VB6 if I wanted to see if a datetime field wasn't set, I could do something like if myDate = 0 then. I tried that with VB.NET and it can't compare to an integer. How do we do this now? I found the Ticks property, so if myDate.Ticks = 0 does seem to work, but I'm not sure if that's the "right" way to do it. None of the other things I've tried have been successful.

Dim dt As New DateTime
If dt.Ticks = 0 Then MsgBox("dt.Ticks = 0") 'this fires
If IsDBNull(dt) Then MsgBox("IsDBNull(dt)") 'doesn't fire, so no good
If Not IsDate(dt) Then MsgBox("Not IsDate(dt)") 'doesn't fire, so no good
'If dt Is Nothing Then MsgBox("dt is nothing") 'not legal syntax

View 9 Replies

How To Determine Path App Is Run From

Mar 26, 2010

How can I find out what directory my program was launched from? Or maybe the installation path?

View 2 Replies

How To Determine PHYSICAL Key

Feb 14, 2011

I want to hook the keyboard and make some actions (in vb.net) when a specific physical key is pressed.I have found online several excellent keyboard hook dlls, but there is a problem: the hook dlls find the keycode of the pressed keys, not what physical key is pressed.So, for example, in a USA keyboard if I press the key on the left of the Right-Shif key I see the e.keycode: 191 (OemQuestion), in a italian keyboard I see the e.keycode 189 (OemMinus).This means that if I put in My.Settings the code "189", an italian user can see that has to press the key I want, an USA user see another key to press to have the same action because on it keyboard the OemMinus key is not on the left of the Right-Shift key.now the question is: how to determine univocally the keyboard keys? What do I have to put in My.Settings that determinate a specific physical key, the same for all the keyboard languages?

View 2 Replies

.net - Determine If A Url Is Absolute Or Relative From VB?

Feb 4, 2010

I'm trying to determine in vb if a URL is absolute or relative. I'm sure there has to be some library that can do this but I'm not sure which. Basically I need to be able to analyze a string such as 'relative/path' and

View 3 Replies

.net - Determine Is An Object Is A Structure?

Mar 4, 2011

I'm looking for a similar "IsStructure" function. Is there some other way to determine if T is a structure but not an intrinsic type?

Public Shared Function MySub(Of TData)(ByVal t As TData) As TData
Dim IsClass As Boolean
IsClass = GetType(TData).IsClass
End Function

Note that using IsPrimitive and IsValueType on Nullable(Of Integer) and a Structure returns the same results, False and True, respectively.

View 2 Replies

.net - Determine The Size Of An Object?

Aug 22, 2011

Public Class A
Private aa As Integer
Dim bb As Integer
Public cc As Integer

[code]....

what is the size of the object oA?and what if Class A and B contain methods?(I meant the size of object)what if inherited class B contains overridden methods?(size of object)what if inherited class B contains variables with same name as in Class A?(size of object)I need theoretical answer. Does those access specifiers Private,Dim,Public make any difference in allocating memory because of their different scopes?On what basis memory is allotted for a method? etc.

View 1 Replies

.net - Determine Which Screen The Taskbar Is On?

Sep 17, 2011

Screen.PrimaryScreen doesn't always work because on a multi-monitor setup the user may move his/her taskbar to a screen other than the primary. Finding the screen with minimum working area doesn't work too because there may be monitors with different resolutions.

View 2 Replies

C# - Determine If Outlook Has Any Contacts?

Jul 19, 2010

I have a VB.NET windows application in which I'm using Outlook's contacts as my address book to get a list of email addresses. I'd like it to use Outlook as the address book, but if an Outlook mailbox has not been set up or there are no contacts then I don't want Outlook to come up at all. The problem that I'm having is as soon as I try to access Outlook the Outlook Startup Wizard comes up, which I don't want to happen. Here is my code:

Dim ao As Outlook.Application
Dim ons As Outlook.NameSpace
Dim Contacts As Outlook.Items

[code]....

View 1 Replies

C# - Determine If Two Types Are Equal?

May 20, 2011

I'm a little foggy on System.Type versus an actual class type (like Object or XmlDocument) in .NET... will this code correctly determine if the type of a particular object is equal to a class I specify?

// Given "myObject" (unknown type), and some class type (let's say "MyClass")...

If myObject.GetType.Equals(MyClass)

If TypeOf(myObject) Is MyClass[code].....

Which one is correct? Bonus points if you can provide some information on what a class identifier is versus what a System.Type is. :)

Note: The language doesn't matter here, VB.NET or C# is fine, the code above is pseudocode.

View 2 Replies

C# - How Does .NET Framework Determine Zones

Nov 14, 2011

I got the following error but am perplexed why .NET thinks this DLL is located in the internet zone when clearly it is on the Intranet.

Here is the error NUNIT is throwing:

Unhandled Exception: System.TypeInitializationException:
The type initializer for 'NUnit.ConsoleRunner.Runner' threw an exception. ---> System.Security.SecurityException: That assembly does not allow partially trusted callers.

[Code].....

View 1 Replies

Determine 1st, 2nd, 3rd Place By Time

Nov 4, 2009

I am having hard time determining how to get 1st, 2nd, and 3rd place determined by time. I was thinking about bubble sort through an array, but since I am determining lowest to highest based on numbers = runner it just sounds more confusing. The code to determine second is not that efficient, I know there is an easier way. That is the part where I am stuck.

Public Class Form1
Private Sub btnCalculate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCalculate.Click

[Code].....

View 4 Replies

Determine Active Form Name?

Apr 20, 2010

When debugging in VB6 it was easy to find the name of the active form because it was automatically highlighted in the Project Explorer.

How do I find the name of the active form in VS2010?

View 7 Replies

Determine Country From IP Address?

Jan 20, 2009

I have the following code which reports the users Ip address but need to display another textbox which the country of the IP belongs to.[code]...

View 2 Replies

Determine Datagridview Change Or Not?

Aug 10, 2009

How can i determine datagridview 's datatable change or not when i leave it.

If datagridview change then my value return true else it ll return false.

View 2 Replies

Determine Default Web Browser?

Sep 30, 2010

How can I determine the default web browser, and then launch it with a specified URL?I was using this code, but since IE is less and less relevant, I thought I'd try to use whatever the computer user prefers. In this example I provided a SQL help site as the web site to load.

Code:
Shell("C:Program FilesInternet Exploreriexplore.exe " & "http://www.w3schools.com/sql/default.asp", AppWinStyle.NormalFocus)

View 6 Replies

Determine ETA Of A File Transfer By TCP?

Apr 26, 2010

I wrote some code to share files throughout my network. The thing is that i don't understand how to determine how much the client has sent already and how much is left. I have posted my code below so you guys can see what I'm talking about.[code]...

View 1 Replies

Determine How EXE Program Shut Down

Apr 13, 2011

Is there any way to determine how my application was closed. i.e. task manager, vs any standard close method. Actually my app is a dll that is used in an exe, so I really need to know how the exe program was shut down. Basically I am trying to write to a debug text file if the user has to shut down with task manager.

View 4 Replies

Determine If A Certain File Exists On The Add?

Aug 9, 2010

I'm using the coding below to determin if a certain file exists on the hdd. However there is an error on this line: If FileExists("C:myfile.txt"))="False" then msgbox "False"

it gives me the following error message:End of statement expected.

what am I doing wrong?

[Code]...

View 1 Replies

Determine If A Control Is A Given Type?

Nov 5, 2011

Public Shared Function IsType(ctrl As Control, ByVal thisType As ??????) As Boolean Return (TypeOf ctrl Is thisType) I need a function that I can call, for example, to determine if a control is type RichTextbox.dim z as Boolean= IsType(txtBox1, RichTextBox) I ned to determine if a control is a given type (i.e., not always RichTextBox). I don't know what Type to make thisType. Can this be done?Actually I simpified the problem but if the above is answered I can write the function

View 4 Replies







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