Lakshmi.A.V's Q&A profile
Visual Studio Express Editions Industrial/factory automation.....is vbnet the way to go?
I am looking to build a factory, that has 10-15 appliances which will be used in different processes. Essentially the software has to interact with the appliances, turning them on and off, monitoring temperatures, and moving parts. We have 2000 recipes (or processes) that need to be stored in memory that can be applied to our product. Our thoughts are that this would probably done with a micro-controller. Can vb be used in a microcontroller What operating system does microsoft have for microcontrollers I would like an HMI program for my company's control system product. I have very little VB or C++ ...Show All
SQL Server Datareader source/Data flow task property expression problems
Hi all, I have the June CTP version of Yukon and it's various tools, and I'm having an issue with using property expressions or variable syntax within the SqlCommand string of a datareader source within a data flow task. It seems as if there were issues in past versions of doing this within data flow tasks, but I thought with the June CTP that this was a possibility. The documentation even states that you can do this within the sqlcommand property. Anybody else have this problem Any solutions Thanks, Adrian Crawford Mark, Thanks for your response. I figured out my problem in another recent post here ...Show All
Software Development for Windows Vista Count number of active transactions in COM+
I want to write a program to monitor COM+ transactions. Does anyone know how to write in VB6 to count the numbers of active transactions held in COM+ server You will need to use COM+ Events and IComTransactionEvents: http://msdn.microsoft.com/library/ url=/library/en-us/cossdk/html/f28a0ef5-1c9a-4fdc-bb10-2c381f22f5e3.asp frame=true I don't have a VB6 sample cody, sorry. But it will be similar to calling any other COM component. ...Show All
SQL Server Microsoft.SqlServer.Dts.Pipeline.DoesNotFitBufferException
Hi I have a SSIS project that has one parent package and three child packages. When I run the project on my development machine in debug mode it works fine. Also if i run the packages using dtexec on my development machine it still works fine. However the problem comes in when I try and run the project using dtexec on the staging server i get the following error: Microsoft.SqlServer.Dts.Pipeline.DoesNotFitBufferException: The value is too large to fit in the column data area of the buffer. does anyone have any idea how to fix this please thanks G Probably the data on staging server is dif ...Show All
.NET Development Urgent:Add,Edit,Delete,Modify an XML document in vb 6.0 using DOMDocument
For Example XML document is shown below: <emps> <emp> <ename>Srikanth</ename> <empno>1</empno> <sal>6000</sal> </emp> </emps> The values of ename,empno and sal are displayed in textbox control. Add: If I click on the add button i want to add new node to the xml file. example to add : To add i have written code, this is working fine... Dim objperson As IXMLDOMNode Dim objchild As IXMLDOMNode Set objperson = xml_document.createElement("emp") xml_document.documentElement.appendChild objperson Set objchild = xml_document.createElement("ename&q ...Show All
.NET Development Policy settings
Hi, Is it possible to apply policy settings(through policy file) in the DLL project. The DLL will be used by Windows form (client) application. I am having trouble doing this. I don't know how WSE runtime will find the policy file. Even if I set the file path in the app settings of DLL project then those settings cannot be recognized by the Main application. Is it true So DLL can access Web service but WSE settings can be applied on the calling application of DLL, or I have to do policy settings through code not from the file. Just want to know if this correct or if there is a trick available to apply policy settings through policy ...Show All
Software Development for Windows Vista capture audio from microphone
i am looking out for some help on how to capture audio...i made an application using directShow for video capture but dont know how to insert commands for voice capture..any sites u know..or any help do inform... I expect that your current code enums the video devices and connects the desired device to your output. To capture audio, you do essentially the same thing, except you enumerate audio capture devices. How far have you gotten And what is your output destination To select the microphone (as oppose to other sources), you should check out the IAMCrossBar interface. ...Show All
Visual Studio Express Editions how do .dll files work?
Hi all, I have a question... What are .dll files, and what are they for Grtz, Tom Yes you can create one Start a new project of the type class library. The class library can contain any classes which you might add to a windows project. If you compile htem as a class library then you will need to add a reference to the dll in the project which is going to use the functions stored in the libary. Then you can use those functions in the same way as the functions you create inthe project itself ...Show All
Smart Device Development Context Menu in a ListView
Hello, I'm trying to develop my own Explorer for PocketPC, I'm getting stucked with ContextMenu... here's my problem. I've a default ContextMenu, called contextMenu1 with field as refresh,paste,paste link and so on, and a file related one, called itemMenu that has field as "copy","cut","properties", and so on.... using the itemActivate event, I set the CM to the listview, with this code private void item_Selected( object sender, System.EventArgs e) { try { String tmpPath = CurrentPath; ListViewItem currentItem = this .listView1.FocusedItem; currentItem.ListView.ContextMenu = itemMenu; .... My questions are : ...Show All
.NET Development Typed DataSet on two different table definitions
Is is possible for a typed DataSet to update a table whose definition does not exactly match the DataSet, but that should be compatible with it For example: Our Address table originally had these columns: AddressLine1, City, State, Zip and the typed DataSet reflects just these columns. Now the Address table has been updated on the database to have a new column, AddressLine2 (Nullable). The dataset throws an exception when attempting to update stating that AddressLine2 is not in the table. But I don't care. AddressLine2 is nullable so I can safely ignore it. I cannot update the DataSet with the new table definition since I also need ...Show All
Visual Studio SUPPRESS DUPLICATE NAMES
I have a Crystal report with 700,000 records. I grouped this by fields "PROCESS" and "OPERATION". Under the Grouped Operation field there are many duplicate numbers such as 10 or 20. I want to suppress the duplicate numbers and only show each distinct number once for each Grouped Process & Operation. Example: Process Operation LEFC710 10 LEFC710 10 Process Operation LEFC730 10 LEFC730 10 LEFC730 20 LEFC730 20 LEFC730   ...Show All
Visual Studio Express Editions Express .img [Image] files cannot be burned to disk with Nero as stated !
The webpage where you download Visual Express Beta 2 image files states that you can use Nero Ultra Edition 6 to burn these .img files to disk. This is incorrect. When I attempted to open any of these .img files Nero responded with an error message stating that the file format was incorrect. I haven't bothered downloading and trying Roxio as I really don't want to have to purchase two cd rom writing programs. Has anybody else come across this problem and what workarounds are there Note: these files open correctly in IsoBuster so there is no file corruption. Try ...Show All
SQL Server DateTime with TimeZone ?
Are there any plans to enhance the DateTime datatype to be able to store a timezone, and provide timezone aware arithmetic functions The lack of timezone support seems a glaring omission - especially given that Microsoft's biggest DB competitor (Oracle) has a timestamp with timezone datatype. At present, you have to code all this yourself in SQL 2005. Is this not something that should be built into the DBMS Thanks, Andy Mackie ...Show All
.NET Development get data from a stream
Hi, i've done a little c# server that waits a stream(that contains 23 float numbers) and i can't get the floats numbers . I've looked for a properly method however i haven't been lucky. Exist any method (to extract from the stream the floats) that help me or How can i do it Thanks a lot. For example: class TCPServer { public static void main(String[] args) throws Exception { ServerSocket ServidorSocket = new ServerSocket(10010); Socket conexionSocket = ServidorSocket.accept(); LittleEndianInputStream entrada = new LittleEndianInputStream(con ...Show All
Visual FoxPro is it possible to automate ACDC from visul foxpro
I am having a software for jewellery cataluge made in visual foxpro. As the number of picture increases it take lot of time to diapay . So is there any way to automate ACDC from visual foxpro so i can pass on the picutre name to ACDC and show in that Regards Raman If it's all about displaying the images and some actions upon selection then you could put them in an HTML file as image links and diplay via web browser. ie: oForm = createobject('form1') oForm.show() Read events Define CLASS form1 AS form Top = 0 Left = 0 Height = 470 Width = 740 DoCreate = .T. Caption = "HTML sample" Name ...Show All
