Hai everybody,
This is a sample XML file I am using.
<?xml version="1.0" encoding="utf-8"?>
<TC_CONFIG>
<Comm name="Ethernet">
<rxPort>3000</rxPort>
</Comm>
<Timeout value="2000">
<units>ms</units>
</Timeout>
<LRM Name="OsamcMainProcCard">
<Addr>1</Addr>
<endian>big</endian>
<ipAdd...
What's best practice (in VB.Net):
Function GetSomething() as String
GetSomething = "Here's your string"
End Function
or
Function GetSomething() as String
Dim returnString as String = "Here's your string"
Return returnString
End Function
Obviously, neither of these implementations make any sense, but they're just meant t...
Microsoft announced the Visual Studio Async CTP today that introduces the async and await keywords into C#/VB for asynchronous method execution.
First I thought that the compiler translates the keywords into the creation of a thread but according to the white paper and Anders Hejlsberg's PDC presentation (at 31:00) the asynchronous ope...
This is my script to load the image from the database:
<%@LANGUAGE="VBSCRIPT" %>
<!--#include file="db_connection.asp"-->
<%
Response.Expires = 0
Response.Buffer = TRUE
Response.Clear
Dim sql
Dim rs
Dim userID,str
Set rs = Server.CreateObject("ADODB.Recordset")
str = "SELECT b.itemimg_image FROM sct_item_image b where b.item_id...
In the system32 directory I saw an .OCX file with a corresponding .OCA file.
I had thought .OCA files are used only by Visual Basic. Are they therefore unnecessary for program execution and could be removed?
If they are unnecessary, why would there be an .OCA in the system32 folder in the first place?
...
Hi,
I have a VB 6.0 application which contains some images inside a imagelist control. I want to know where these images get stored in the system.( because I want to use these images in another application and I dont have the images seperately in the system)
So, the only way is to take the images from Visusal basic 6.0 project.
Do we hav...
I had a look at Asynchronous data through Bloomberg's new data API (COM v3) with Python? before posting which has some pretty awesome info, but what I need is a way to create a CUSIP-Description table in a database using the Bloomberg API (to save $$$ by avoiding a CUSIP subscription)
Does anyone know how to populate a table with CUSIP ...
i want to fire automatic key press or mouse click event when a color appears on the screen
on other application or Browser....
...
eg. i have records like this in my table.
Name Date Salary
Raja 01/10/2000 5000
Raja 02/10/2000 5000
Raja 03/10/2000 5000
Anu 01/10/2000 3000
Anu 02/10/2000 3000
Anu 03/10/2000 3000
King 01/10/2000 4000
King 02/10/2000 4000
King 03/10/2000 4000
i w...