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

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

Zooma

Member List

Key_46
imshally81
bruce027721
IIM
Chris Holt
Kevin Southern
Beast Forever
Antfor
PedroDaquino
balasaravanan_v
abrewerton
Zhou Yong
IonWarp
M_J
Chris Jenkins
Blast
DMottorn
Arthropleura
S.T.A.R.S.
alan32818
Only Title

Zooma's Q&A profile

  • Visual Basic in my richtext box i need to load a ms word document file content

    in my rich text box control i need to load the msword document file my word document file contain but it is accepting onely a text file can any one help me as stated, it cannot be done. You could however use perhaps MS Word interop to get the text, then paste it into the richtextbox control however you may lose some features/layout etc... I'm not entirely sure. RTB Controls can only load RTF formats, not doc files regardless ...Show All

  • Audio and Video Development Menus not showing up on WinDVD HD (Toshiba Qosimo)

    Hi all, this maybe isn't the right place to discuss compatibility with players but maybe somebody tried to get things to work on a software player before. My project is working fine on Microsofts iHDSimulator and the Toshiba HD-A1 standalone player. But when I try to run it with WinDVD on the Toshiba laptop (the one with HD DVD Rom drive) the software either crashes or just plays the menu video without the graphics. Any ideas Are there any known issues for the WinDVD software Cheers, Gunnar I finally got it working. The problem were relative urls. This works: url('file:///dvddisc/ADV_OBJ/TEST.ACA/Image.png') ...Show All

  • SQL Server problems executing a SELECT inside a TRAN against other computer

    Hi I have a problem executing a SELECT inside a TRAN against other computer For example: IN THE SQL Query Analizer of the COMPUTER2 1) this runs OK BEGIN TRAN SELECT * FROM COMPUTER2.DATABASE.DBO.TABLE COMMIT TRAN 2) this runs OK SELECT * FROM COMPUTER2.DATABASE.DBO.TABLE 3) this runs OK SELECT * FROM COMPUTER1.DATABASE.DBO.TABLE 4) this runs bad BEGIN TRAN SELECT * FROM COMPUTER1.DATABASE.DBO.TABLE COMMIT TRAN The problem is that TABLE locks and it does not finish. I've been looking for similar ERRORS in Microsoft Support but I found nothing I've uninstall and install de SQL server 2000 SP4 and the problems continues the same Please, someone could help me, thanks "Explicit" transactions, using BEGIN TRAN/COMMIT ...Show All

  • SQL Server Optimizing Query to Run

    I'm trying to get a query to run which looks at completed orders that have not had another paid order in 180 days. The database I'm running it against is very large so I can't get it to complete. Where's what I've got: select Date =cast(cl1.cl_rundate as datetime(102)),count(cl1.cl_recno) as 'Completed Initials', cl1.cl_status as Status from dbo.vw_Completedorders cl1 where cl1.lob_lineofbusiness = 'aaa' and cl1.cl_rundate > '20060801' and not exists ( select cl2.cl_company from dbo.vw_Paidorders cl2 where cl2.lob_lineofbusiness = 'aa'and cl2.cl_company = cl1.cl_order and cl2.cl_rundate > '20060101' and datediff(day,cl2.cl_rundate,cl1.cl_rundate) < 180) group by cl1.cl_status, cl1.cl_rundate ...Show All

  • Visual Studio Team System Merging Labels

    I have a label that touches several files in two different changesets. I want to use that label for a merge. The VS IDE gives me an error message "No items match $<path> in the label myLabel@$/<path >". So then I figured this could only be handled with the command line merge. I tried this: tf merge /recursive /version:LmyLabel /preview /noprompt $<frompath> $<topath> And it gives me essentially the same error. If I ask TFS about the label "myLabel," it gives me a nice description of the files that are in it. Then I decided to try the command line merge using a changeset spec that is synonimous with that label (e.g. C305~C306). This worked. So is the final conclusion that TFS can't ...Show All

  • SQL Server SQL Select

    Hi, I've got 2 tables with 2 fields each; Table1 is the master account list with fields: AccNo and AccDescr Table2 is the account balances with fields: AccNo and AccBal If an account has no transactions and no balance it doen't appear in Table2; Table1 is a complete list of all the accounts; I want all the accounts to appear on my report...if there is no balance (doesn't appear on Table2) it should still be on the report with a 0 balance; How can I achieve this Currently only accounts with a balance displays; This is my SQL statement: SELECT Table1.AccDescr, Table2.AccBal FROM Table1 INNER JOIN Table2 ON Table1.AccNo = Table2.AccNo Thanks Hello, use this instead ...Show All

  • Windows Forms Timer problem with windows service

    Dear All, I have set a timer for my windows service. The problem is that when I start my windows service it writes to a file and I find that it just wrote once that is when the service starts. I set the interval to 10000 that is 10s. So what is the possible problem here any help please .net sukbir wrote: Ya my problem now is like u said "You'll have to ensure your worker method executes and exits before it's called again by the timer [or disable timer for the time this method is executing]". How can I ensure this Thanks. You could either make the timer interval long enough for your code execute completely in that time, or make the timer call your function only once (no co ...Show All

  • Smart Device Development How to read an XML file which is in the web server?

    Can anyone pls teach me how to read an XML file which is returned from a jsp application(e.g. http://192.202.51.61/test/App1.jsp &myID=001 ) I have been searching for long. I found that if my application is developed as a computer application, it works fine. But if I copy and paste the code into a smartphone application, it does not work.... It returns timeout error.... Can anyone tell me how to do this Have you tried debugging Try out consuming a simple Hello World application from the URL i.e. let URL return Hello World like string in a simple XML. Manav ...Show All

  • Visual C# Which string concatenation method is more efficient?

    Which is more efficient string. Concat ("Hello ", "World"); Or... string .Format( "{0} not on device" , fileName) Also, you should note that the compiler maps "Hello" + "World" to string.Concat("Hello", "World") and "Hello" + "World" + "!" to string.Concat(Hello", "World", "!"); So there's rarely a reason to use the method call directly. ...Show All

  • Software Development for Windows Vista Windows Service Running Word via DCOM

    Hi everyone, I developed a Windows service which uses MS Word to generate documents. I call Word using DCOM / OLE. Up to now it worked pretty well. I tested the service on Windows Vista (Beta2, RC1, RC2) and it doesn't work anymore. Opening a Document in Word crashes with varying error messages. Office 2003 sais somthing like "Not enough memory". Office 2007 sais something like "type mismatch". I guess it might have to do something with the Session 0 isolation in Windows Vista. As services in Vista now have an own session. But I guess Word has problems with it's screen. In older Windows versions, Word worked "in the dark". When I run the service as console everything works fine. Anyone an idea w ...Show All

  • .NET Development Soap header namespace not send?

    Hi My program uses a AXIS webservice and need to add an soap header and in it an element with a value. My class is this: <System.Serializable()> _ <System.Diagnostics.DebuggerStepThrough()> _ <System.ComponentModel.DesignerCategory( "code" )> _ <System.Xml.Serialization.XmlType( "Vendorheader" , Namespace:= "http://ech.client.nl/vendor" )> _ <System.Xml.Serialization.XmlRoot( "Vendorheader" , Namespace:= "http://ech.client.nl/vendor" , IsNullable:= False )> _ Public Class Vendor : Inherits SoapHeader Public VENDOR As String End Class As can be seen is set the namespace in this class, but the header at the webservice ...Show All

  • Windows Forms Installing on win2000 doesnt use .net2.0 components

    Hello When i install my application on windows 2000, it only displays the old buttons and tabpage look. I have installed the .net 2.0 framework so it isn't missing! I'm using ms virtual pc 2004 to install it on, since i dont wanna use win2000 myself, but if those who has to use my program have it, then id like it to to work on win2000. Anybody tried this themselves On the virtual pc i can only use 256 colors for some reason, dont know if this give some bad effect with the .net framework if you are referring to the Windows XP/Vista themes then this will only work in these OS's, not earlier versions. what exactly are you talking about when you are saying "only displays the old buttons and tab ...Show All

  • Visual Studio Express Editions Cannot register filter with win98se

    I have built a capture filter with VS Express on a pc with xp pro, where it registers ok thru regsvr32.exe. But if I try to register it on another pc with win98se it fails to register. It happens with both the debug version and the retail version. Any comment or advice please Regards, pcd. You'd register a COM visible .NET class library with regasm.exe. Did you write a native COM component Did you install the CRT runtime DLLs on the other PC ...Show All

  • Visual Studio Express Editions Using Visual Basic Express 2005 and Crystal Reports XI Release 2 Together

    Win XP SP2, VB Express 2005, Crystal Reports XI Release 2 (full registered version). I have installed VB Express 2005. I then upgraded Crystal XI to Release 2 and installed. I added the CrystalReportViewer to the vb toolbox. I have the following references in my project: CrystalDecisions.CrystalReports.Engine, .ReportSource, .Shared, .Web, .Windows.Forms All are of .NET type and version 11.5.3700.0 When I put the CrystalReportViewer onto a form from the toolbox, the crviewer does not go onto the form itself but it goes down below the form (where the mainmenu or process components would reside). This means that I cannot resize the viewer myself on the form. After I set up the code and run the report, the parameter di ...Show All

  • Audio and Video Development Problem with 'content ID' while creating directory in 'persistent storage'.

    Hello Everybody.... In the java script for creating a directory (FileIO_createDirectory), do we have to specify the content id also If we don't specify, whether the directory will be created or some exception will be thrown I am giving two examples below, please tell in each case what will happen. 1. FileIO.createDirectory("file:///required/app1",callback_createDirectory); 2. FileIO.createDirectory("file:///required/11111111-1111-1111-1111-111111111111/app1",callback_createDirectory); You can only create files in the "root" of //required, not directories. The directories are created by the player and have the GUID names. This is outlined on 10.3.1 in the spec. ...Show All

©2008 Software Development Network