Way To Distinguish Between Internal (local) Fixed HDD / External (USB) HDD?

Jun 13, 2009

I'm using GetDriveType function to determine the drive type.the function works fine, but not with external HDD it returns 3 or "fixed" which confuses me!! is there any way to distinguish between internal (local) fixed HDD and external (USB) HDD?

View 1 Replies


ADVERTISEMENT

Check Internal And External Duplicates?

Aug 24, 2009

Recently, I have a requirement to develop a vb.net application wherein the input excel sheet data which has an average of 5000 records should be checked for Internal duplicates (duplicates within the same sheet) and external duplicates (duplicates which exist outside this sheet). I have gone through lot of logics..some of which are ...

- Common and currently testing out..

- First insert the excel sheet data into DB..then query by following

select distinct id,mobilenumber from scrubmaster where calltablename=<calltablename given by the uploader>

Then loop for duplicates...

[code]....

The above logic works but it takes very long time..I have tried other logics from web but they "Query timeout"...

View 1 Replies

C# - Website Different Error Page For External And Internal Users

Jun 22, 2011

Scenario: We have a website that is viewed both internally and externally. When an error occurs the users are displayed with a detailed error page(Stack trace etc). Problem: The external customers do not need that much information about the error. We are looking to have the external customers see a message instead. Ex. Please contact Administrator. Also if possible we would like to log this message in our SQL database.

Note: I'm assuming I make a custom error page like - Implementing a Custom Error page on an ASP.Net website. but how do I determine whether or not the user is internal/external? Also is this the best way to approach the problem?

View 5 Replies

Compiler - External-only Properties Or Methods - From The Internal Namespace?

Nov 30, 2009

Is there a simple way in vb.net to mask a public property or method from the internal namespace? It would be helpful as a refactoring tool to isolate internal dependencies and perhaps to enforce a non-recursion policy for external services.

View 2 Replies

Get Local And External IP Address To Display In App

Jul 24, 2011

Need to get local and external IP address to display in my app, but then if possible somehow lookup the ISP using the external IP address got following code to get hostname and local IP address, but it is showing IPv6 address when I would prefer the IPv4 one

[Code]...

View 4 Replies

Forms :: Internal Dataset Or Internal XML File?

May 3, 2009

Is it possible to have an internal XML dataset within a VB 08 program I ask because we at present have the program load an external XML on startup, but i would prefer this to be internal withing the program to stop other editing the XML file.

View 6 Replies

C# - Distinguish Between The Scanner And The Keyboard

Apr 12, 2011

I have a barcode scanner connected to a PC that working with a c# program.now i want to distinguish between the scanner and the keyboard which one is sending data to my program.

somebody said this to me in another topic(but i can't do this yet): basically you can configure the scanner to send some characters that basically tell the computer "hi, it's me". When you see those characters in your input stream, you know the information is coming from the barcode scanner, not from something the user typed on the keyboard. Did you check the manual that came with your barcode scanner? It should have more information about this.

View 2 Replies

Distinguish Files From Directories .net?

Oct 15, 2011

I want my to create an explorer like application. What control should i use to show the contents of a directory.I tried listview and listbox. Unfortunately i was unable to add items in a listview using the function getdirectories("D:")I managed to do so with listbox control. But how can i distinguish whether the selected entry is a file or a directory. Code snippet is given below :

Private Sub ListBox1_DoubleClick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListBox1.DoubleClick
<strong>sel = ListBox1.SelectedItem</strong>
ListBox1.Items.Clear()

[code]....

I want that if thesel is file, then it'll be open in its default application,i.e. using system.process.start(sel.filetype).Else if sel is a directory then the directory will open.

View 2 Replies

Cannot Distinguish If DataGridView Is Enabled Or Disabled

Sep 7, 2010

Put a Datagridview on a form, fill it with data. dgv1.enabled = True and dgv1.enabled = False are almost the same look to the eye unlike other controls (textbox,combo, listview, etc ...) where there back color changed to light grey and you can distinguish if that control is enabled or disabled but not for Datagridview.

View 2 Replies

How To Distinguish Between Copying Class Data And Pointer

Oct 2, 2009

How do I distinguish copying data and a pointer when using a class?E.g.
public class myparams var1 as integervar2 as intergerv3 as stringend classmyvar as new myparamsmyvar.var1=1myvar.var2=2myvar.v3 ="hh"othervar as new myparams

I want to copy all of myvar data into othervar in one go.. without doing
othervar.var1=myvar.var1 etcusing othervar=myvar"
Looks like its just copying the pointer of myvar into othervar? Can I copy all the class data in one go? VB2008 user

View 1 Replies

C# - Distinguish Types With Identical Fully Qualified Names?

Jan 8, 2010

The scenario is I would like to be able reference two similar 3rd party assemblies (e.g. assem1 and assem2) which both define a type with the same fully qualified name (e.g. Example.MyType). Is there any way to distinguish between these and refernce them seperately? I believe the answer is no but confirmation or correction would be handy. Edit: Answered for C# 2.0 and higher below but need an answer in VB.Net 1.1

View 2 Replies

Combobox Change - Distinguish Between User And Code Update?

Oct 21, 2009

title is a bit vague. Is there any way I can tell if it's the user or the code that's altered a combobox? I want certain things to happen when a combobox is updated, but I don't want them to happen when the code is altering the combobox at runtime, only when the user selects something out of them. Unfortunately, if I use the 'Selectedindexchanged' option that triggers when I change the contents in code too. I've tried disabled the combobox while I update it, but that doesn't seem to work. Any way to detect user input only? My combobox is drop-down only by the way, so it's only if they select an option - they can't type anything.

View 10 Replies

Distinguish Between Built-in Methods/property/events And Mine?

Jun 13, 2012

When inheriting class or control e.g. ListView, TreeView, etc..., what is the best way to distinguish between built-in methods/property/events and mine?Currently, i start my methods/property/events with "aa" in order to make them at the top of auto complete list.

View 1 Replies

Distinguish Between Text And Graphics Inside A Scanned Image?

May 9, 2011

how would you identify the shape of text like inside a scanned document containing text and graphics?In a perfect world,users would never enter data in the wrong form,files they choose to open would always exist and code would never have bugs.[URL]

View 5 Replies

Inheriting Class Or Control - ListView, TreeView - Distinguish Between Built-in Methods/property/events

May 15, 2012

When inheriting class or control e.g. ListView, TreeView, etc..., what is the best way to distinguish between built-in methods/property/events and mine?

Currently, i start my methods/property/events with "aa" in order to make them at the top of auto complete list.

View 14 Replies

Add Domain User To Local Group While Logged In As Local Account?

Sep 15, 2010

Does anyone know how this can be done? The problem is that when you run the script to add a domain user to the local group as a local user you have no permissions to query the domain. Is there a way to pass a user name and password when doing this? [code]...

View 3 Replies

Zip A Folder Without Any External Dll Nor Any External References?

Feb 3, 2012

I wanted to know if it is possible to Zip a folder without any external dll nor any external references - just with native features.I've been able to Zip files with System.IO.Packaging, but it does not include folders and I cannot tell it to Zip the parent folder.I know there are external dll and so, but I'd like to know if it's possible to make it from a native way.

View 1 Replies

VS 2008 - Code To Distinguish The Picked Process From Process List?

Apr 24, 2011

i want a code that if a process that i picked is no match in a process list that process that i picked will start

View 4 Replies

Use A Usb Or Internal Camera

Oct 11, 2011

I am starting a application that will need to use a usb or included device camera to capture images. I would like to know if there are any samples or examples on how to connect to the camera and capture images. This will be using vb or c# dotnet 4.0 on vista.

View 4 Replies

Distinguish Between MS Access Fullversion With Access RunTime?

Jul 27, 2009

My application is built to scan MS Access database in vb.net 2005. MS Access DB is opening when Access Run-Time (But no Full version of MS Access) is installed in the system as well. But showing error while scanning through our Tool.Need only Full version of MS Access.To Identify, whether the required application (like here we need MS Access Full version) is installed or not at the time of installing our Tool(Through MSI).Is it possible to identify MS Access Full version with Run-Time while installing the Tool?

View 1 Replies

C# - Internal Relationship Between Properties?

Jul 21, 2011

My issue involves relationships and cascaded effects between properties, and I'm wondering what best practices are on this.I have a class that contains a list of varying length of numbers. When editing the list, sometimes the user prefer to set a TargetSum, so that the program enforces the list will always add to this sum. I am accomplishing this by programmatically setting the final element in the list such that list sum = TargetSum. For example, if the user chooses to UseTargetSum, then sets TargetSum = 10, then creates a list of length 4, and enters 1, 4, 2 for the first 3 elements, then the final element is programmatically fixed to 3. The user cannot change the final element themselves.

I do this behind the scenes by handling all necessary events, such as a list element value change, list length change, and the UseTargetSum option change. For each event trigger, it recalculates the last element's value.It works but then there was a bug when loading saved data. If a list is loaded by sequentially adding the elements, the handlers modify each entry. Regarding the example, when the first value of 1 is entered, the handlers say "a value was just added, the sum should be 10, there is currently only one element, so it needs to be 10". So the first element gets changed to 10 behind the scenes. When the second element is next added, the handlers say "a value of 4 was just added, but the first element is already 10, so it should be zero." At the end of the load, the final list reads 10,0,0,0 instead of 1,4,2,3.

I know it is possible to rearrange the load procedure such that I get the correct list. For instance, I could avoid enabling the TargetSum event handlers until after all the data is loaded. The list would first be created as 1,4,2,3 and then the handlers would change nothing.

But this experience makes me wonder if I am opening the door for other sneaky side effects. It seems you should be able to load data without worrying too much about an implicit ordering. It also seems unusual to have "cascading" effects between class properties. Is there a more accepted approach?

The other alternative I'm considering is to only enforce TargetSum only inside UI forms. Ie, when you know it's a user making the change, then enforce the TargetSum, but otherwise leave the core class logic alone.That way database loads, etc, are left unaffected. But I guess the downside of not having ubiquitous enforcement is that opens the door of incorrect sums via some unforeseen complication.

View 1 Replies

Internal Bit-by-bit Decimal Format

Apr 7, 2012

I'm using Visual Basic .Net 2010 Express.I know, for example, that the Visual Basic ( IEEE 754 ) Internal bit-by-bit Double Format is: Bit 63 = Sign, Bits 62-52 = 11-bit Exponent, and Bits 51-0 = 52-bit Fractional Significand.But, I can't seem to find any documentation on the Internal bit-by-bit Decimal Format.There also don't seem to be any workable mechanisms for accessing the bit structure or copying the bits to another Format for internal processing and returning the result to the Decimal Format.[code]to separate the ULongVariable into bytes for convenient manipulation. A similar reverse process allows moving the manipulated bits back into the Signed Long Variable.But, methods like << and >> are not extendable to Decimals per the Microsoft Documentation ( and I tried them anyway, and confirmed that they don't work ). Nor does there appear to be any way to copy the 128-bit Decimal into two 64-bit Unsigned Long Variables, or vice-versa.

I could, of course, forgo the use of Decimals and define my own MDJDecimal consisting of two ULongs, but that seems a bit of an overkill, and its methods would likely incur significant development time, and would probably also be rather excessively slow and cumbersome.I know I could write a workable routine in Visual C++ .Net using the Unmanaged Native Assembler, but I don't know enough about how to integrate that with Visual Basic .Net code, and I don't want to irrevocably tie what I'm developing to the Intel platform.I might also be able to write it in Managed Visual C++ .Net, but, again, I don't know enough about how to integrate that with Visual Basic .Net.

View 2 Replies

Internal Margins On TextBoxes

Jul 26, 2010

I have some forms that were VS2005 forms the I moved to VS2010. The forms have a tab control and on the tabcontrol are some panel containers. If I add a multi-line textbox toa panel I'm seeing the text offset from the left margin. If I make a form from scratch the margin does not appear.Any idea where this left margin is coming from?Is there a way to set the left internal margin in code?

View 9 Replies

Modify Internal Version Of An Exe?

Mar 9, 2012

I have several VB6 exe's/dll's that I have created, when I right click on the file and get the properties it says:

File version - 4.2.0.9

Product Version - 4.02.0009

Is it possible to change the File Version? I want this to say 4.2.9.123

I want to change this programmatically, so where is the file would I find these values? Are they at a specific location?

Is this going to cause an issue registering the exe/dll's with COM if I change the internal version?

View 2 Replies

.net - Internal Server Error (500) With HttpWebRequest

Jun 20, 2012

I'm trying to connect to a remote server (from our customer) via HttpWebRequest.GetResponse but at the login page i'm always getting an exception: "The remote server returned an error: (500) Internal Server Error." In the response stream i see that i was redirected to the error-page. The code worked so far(HTTP status 200) with the old ASP-website but they'll migrate to ASP.NET soon. There's no error if i browse to the URL manually. This is the (reduced) code:

[Code]...

View 1 Replies

Anyway To Step Into Yyy.dlll Internal Code?

Nov 10, 2009

In my project, a reference xxx.dll is added. I am going to step into the code inside xxx.dll, therefore I add the project into the existing solution.So far so good for the vb.net xxx.dll file.Suppose another COM Interop.yyy.dll will be added, is there anyway to step into the yyy.dlll internal code?

View 1 Replies

Back With A Small Project For Internal Use?

Jun 3, 2011

Its been a very long time since I don't show up here.Now I am back with a small project for internal use, but I need a little help.I want to make a program that allows me to change file attributes, like 'hidden', 'read-only' and 'system'.It seems pretty simple, but I want that multiple files can be modified at once. For this I would need a list that shows the files into the interface. There is what I can't get.

I first thought on a listbox, but there is also a listview which seems much more complete, but I just don't know how to use it. I was wondering if I could make something like: I open a folder, all the items inside that folder would be listed inside the listview.I learned a bit, but not enough. I've set the listview to 'details' mode, so I can actually list items. Also, I've added three collums: one for file name, other for file size and another for file attributes. I just need to learn now how they works.

View 3 Replies

DataTable Internal Index Is Corrupted: '5'?

Feb 21, 2012

I know this is old hat, but when you're faced with a problem you cannot solve yourself, you need to find someone with the correct answer.In short, go to the wise.

I am working on an application that has a lot of records, and it uses a listbox control bound to a binding source attached to a table in a data source.A new record with data is added to the binding source's attached table, and, of course, to the underlying sqlServer database table:

[Code]...

View 5 Replies

DataTable Internal Index Is Corrupted?

Apr 29, 2011

I have a data set in the User control . It was working fine but now when I started using another copy of the user control it started showing error DataTable internal index is corrupted: '5'.

dim dv as dataview
dv = new dataview(ds.tables("Names")
dv.rowFilter ="CatNum ='"& val&"'" 'This will always give one row only
dv.item(0)("Names") = myvalue ' here the exception is occurring

View 2 Replies

Display Internal Database In Listbox?

Apr 15, 2011

I want to be able to display information from my internal database into a list box. I want this to show in listbox when the button has been clicked.So once i have clicked the button it will display all the information that is stored in an internal database, i also need to loop it so it shows more than 1 information. I have to show 10 different houses in the information

View 14 Replies







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