Software Development Network Logo
  • Visual C++
  • Microsoft ISV
  • Visual Basic
  • .NET Development
  • SharePoint Products
  • Visual FoxPro
  • Visual C#
  • Game Technologies
  • Visual Studio
  • SQL Server
  • Audio and Video
  • Windows Vista
  • IE Development
  • VS Team System
  • Smart Devicet

Software Development Network >> furjaw's Q&A profile

furjaw

Member List

mlp232
Claudiu Chiorean
Tianyu Li
learnerplates
USMCNJ
FassaBortolo
_brg_
Jose76
jordanb412
GreenStone90
Cristian Rosa
Hsoros
sammy chen
Robs Pierre
crogenicdude
Trev72
BrianMcCashin
Sharma Rahul
Wheeldo
jayakhanna
Only Title

furjaw's Q&A profile

  • SQL Server The product level is insufficient for component...

    Hi. I'm using SQL Server 2005 Management Studio to try and run an SSIS package. One step blows up with this error: "The product level is insufficient for component "data conversion 1"". I checked out the thread here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=112469&SiteID=1&PageID=0 However, after installing SP1, the program is still giving me the error. I'm running the package from my WinXP Pro SP2 workstation. What am I missing Thanks. This really depends on the kind of license and number of licenses your org has. Installing SSIS does require SQL license for each machine. If you don't have the required licenses, you may continue developing and debugging packag ...Show All

  • Visual Basic Including a COM library into an VB6 application

    hi, i have an COM written in VC++ , to include this COM into an VB application i had included this COM dll using References (Project->References->Browse) into the VB application, my Query is : Is this is the way to include a COM in VB6 Application or is there any other way to include the COM into VB6 Application. my COM Consists of Methods and Properties. Please clarify this issue. Sarvan, The following vbscript code show a method to create COM and hope that can help you: <% Option Explicit Dim objConvert Dim sngFvalue, sngCvaluesngFvalue = 50, sngCvalue = 21 Set objConvert = Server.CreateObject( "ConvertTemp.Scriptlet" )%> <%= sngFvalue %> degrees Fahrenheit is equivalent to ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. hello... and please give me a GUI

    Hello. I started working on a video game as a hobby a couple months ago, and I was doing it in Java because that's what I was most experienced with. Since stumbling across XNA on the web, I've just started it over again in C#, because XNA makes so many things easier. So thanks for making such a good and free product. I figured you guys would be happy to hear that an experienced Java programmer is now developing something in C#, so I thought I'd tell you. Anyway, I've read prior posts saying that you guys are working on GUI elements for the next release of XNA... I eagerly await this. My game needs a full suite of GUI elements... labels, text boxes, buttons, dropdowns, selection lists, tabs... so I look forward to them. Thanks again. ...Show All

  • Windows Forms How do i populate a datagridview cell with an unbound data after input information on a cell?

    Hello, I want to populate, in datagridview control, a row cell with to fields (to simplify the example). I have a sql database with a table named Products. The datagridview will show the code of product and in the next column for the same row the correspondent description. I want to insert manualy in each row the product code and after that using for instance the CellEndEdit event conect to the sql database, search for the product code in products table and bring the corresponding data to the grid columns, for this example the description for each product. I am using Visual basic 2005. How can i do this simple task !!! Thanks. Hi I test this demo and add celleditend event like priv ...Show All

  • .NET Development Process crash when using SerialPort or Socket objects and thread.Abort

    The easiest way to demonstrate what this error is all about is to compile and run this code: using System; using System.Collections.Generic; using System.Text; using System.Threading; using System.IO.Ports; namespace ST { public class SerialTest { public static SerialPort m_port; public static void ReadFromPort() { byte []buffer=new byte[10]; try { m_port.Read(buffer, 0, 10); } catch (Exception e) { Console.WriteLine("Read thread exception: "+e.ToString()); } } public static void Main() { m_port = new SerialPort("COM1"); m_port.Open(); m_port.ReadTimeout = 100000; Thread thread = new Thread(new ThreadStart(ReadFromPort)); ...Show All

  • Visual Studio 2008 (Pre-release) Generics in Service Contracts

    Is it possible to use generics in the definition of a service contract For example: [ServiceContract] public interface IFoo<T> { [OperationContract] bool DoSomething(T item); } Thanks, Wells No. In fact, you can do that in a very limited sense: provided that you just create a single endpoint with a concrete type (e.g. have a service that implements IFoo<string> and add an IFoo<string> endpoint) things will work ok, but that's of very limited use. Open generic types are not supported. ...Show All

  • SQL Server The permissions granted to user AAA/bbb .... rsAccessDenided

    I have problem with permissions here is my error http://img2.tapuz.co.il/forums/1_91537174.jpg how can I give all the computers in the network the permission to see the reports. thanks 24sharon, You could go on the System Role Assignments page of report manager and add your domain users (Active Directory) to the role assignment of System User mydomain\Domain User. If would also suggest reading on the different kinds of security that SSRS offers: http://msdn2.microsoft.com/en-us/library/ms156014.aspx Ham ...Show All

  • Gadgets Is the way to drop the file to the gadget ?

    Hi, I'm developing the Vista Sidebar Gadget. I wonder it is possible that user drag the file on the desktop and drop that file to the gadget. I may develop that by creating the ActiveX control and instantiating that in the gadget. In other way, can i develop such a behavior To catch a drag/drop on the Gadget, you need the following code: gadget.html. Note you must cancel the "ondragenter" and "ondragover" events. ... <BODY ondragenter=event.returnValue = false" ondragover=event.returnValue = false" ondrop="fileDragDropped"> ... And the JS. Note the try/catch - the only way to tell if you've reached the last file, is the error generated whe ...Show All

  • SQL Server Connect to SSAS on TCP/IP using Java + execute XMLA

    Hi, I have done this in .Net, but that is easy because you get .Net libraries to help you connect and send XMLA over TCP/IP. I would want to do the same using Java: Connect to SSAS 2005 on TCP/IP, or even SOAP over TCP/IP Then execute XMLA commands and retrieve XMLA responses. How to accomplish this Regards Vijay R Hi Mosha, Thanks a lot, But to use HTTP we need to use IIS, any other way to do this Regards Vijay R ...Show All

  • SQL Server Could not create Maintenance Plan

    Hello, if I try to create a Maintenance Plan from my local workstation I get the following Error Message: TITLE: Microsoft SQL Server Management Studio ------------------------------ The action you attempted to perform on a remote instance of SQL Server has failed because the action requires a SQL Server component that is not installed on the remote computer. To proceed, install SQL Server 2005 Management Tools on the remote computer, and then try again. For more information, see "How to: Install SQL Server 2005 (Setup)" in SQL Server 2005 Books Online, or find the article on MSDN at http://go.microsoft.com/fwlink/ LinkID=57083 . (ObjectExplorer) For help, click: http://go.microsoft.com/fwlink/ LinkID=57083 On my loca ...Show All

  • SQL Server Changing the heading of a table on the next page

    It seems like I've tried everything and it may not be possible. I want the table heading to say "table heading (continued)" on the next page. I've tried built in row count functions to no avail. This is my latest code in the value section of the table header: = IIF(Code.getRow() < 2,"a table heading","a table heading (Continued)" I have verified that getRow() works because I displayed it in the detail section of the table. But it seems like the group heading is static. Time is running out and I will not be at this client after today; I've got 4 hours left. Thanks! ...Show All

  • SharePoint Products and Technologies Document Library Disable Download

    Hi everyone, What I need to do is permit users just read and print documents of a document library but under not circumstances download them or save them. Is there any way in a document library to disable the download option. Is that enough to prevent them from saving the documents. I can hide the toolbar but download is still available. I was thinking of implementing RMS to cope with that but I first want to know if that can be achieved within Sharepoint. Thanks a lot, Thanks for your reply. I suppose that implementing IRM will produce the desired result. I will try it and post the results. ...Show All

  • Visual Studio Compiling a We Site to a dll

    Can anyone tell me what happened to being able to compile the code behind pages to a dll ion Visual studio. I can't find anything that will allow me to do it, short of compiling the code in an command line complier I'm not sure how, I still don't have a dll, just an explanation of how VS 2005 handles the partial classes to make life easier, it still doesn't give me a compiled assemby, just an aspx.vb file that exposes my code to whoever wants to read it I'm not sure how this is an improvement ...Show All

  • Microsoft ISV Community Center Forums read line from table cell for vba in ms word

    Hi, I need to read a line in ms word table cell. There are 3 line in a cell and I'd like to read line by line and put a line in a string variable. Would anyone be willing to help me here I'm so desperate with the answer since I tried everything and none are working. What I did so far: If (Mid(theTable.Cell(caseStartRow, 2).Range.Text, 1, _ Len(theTable.Cell(caseStartRow, 2).Range.Text) - 2)) = chrs$(13) Then objFile.WriteLine ("") objFile.WriteLine ("") End If Please help. Thanks so much!! Have a look at the Split function. This seems to do what you want: lineArray = Split(theTable.Cell(caseStartRow, 2).Range.Text, Chr$(13)) ...Show All

  • Visual Basic Clueless Beginner: Expert System design - Suitable Environment?

    Kind Helpers, I apologise for being at sea and hope that I am posting in the right category! Using Natural Language Processing, I would like to design a prototype system in which users will enter their solutions to some specified problems and the system will analyse and categorize these solutions. Kind of like a problem-specificWikepedia.The database grows as more and more solutions are fed. (My Programming Background: Some VB and C++) This is just an idea in my head which I am committed to materialising. I want to solve this in an Object Oriented way. I understand that I can use VB.Net as a Front-End and MS ACCESS as the Back-End. The trouble is I am completely unfamiliar with Parsing and do not know which Program ...Show All

©2008 Software Development Network