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

Software Development Network >> Rumy......'s Q&A profile

Rumy......

Member List

Charley Lou
ccote
Shobha69358
kiran1234
Marie Ramos
Arjun B
MarcForsyth
GOH Omnipuff
PedroCGD
USACoder
kkennedy1008
Amit_M
Evan Mulawski
amritamritamrit
JavaBoy
cPrince
happycamper1234
smaggi
RayClark096
Matt Lin
Only Title

Rumy......'s Q&A profile

  • SQL Server Unable to Remove Report Model

    I am getting an Internal Error when I am trying to delete a report model from either the manager page or within Management Studio. When I look at the logs I get some information that really isn't telling me what is going on. Any help out there R SQLDUMPER_ERRORLOG.Log 08/24/06 09:35:14, ERROR , SQLDUMPER_UNKNOWN_APP.EXE, AdjustTokenPrivileges () failed (00000514) 08/24/06 09:35:14, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, Input parameters: 4 supplied 08/24/06 09:35:14, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, ProcessID = 2492 08/24/06 09:35:14, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, ThreadId = 0 08/24/06 09:35:14, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, Flags = 0x0 08/24/06 09:35:14, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, MiniDumpFlags = 0x0 08/24 ...Show All

  • Visual Studio Express Editions Help with query - im really stuck.

    I have two databases: 1 = Suppliers, 2 = Supplier Locations (I need them to be seperate because the supplierID is a primary key, but some suppliers have more than one location) I have created a form on which I have put the Supplier details on in Details view and under it I have put the Supplier locations in Gridview. How can i do a query so that when a user clicks on a supplier Id number in the listbox in the Supplier Details area, that suppliers locations will appear in the Locations grid below Thanks for any help, Diane hi threre!!! you mean is 2 tables not database...right in this case in ur table1 which is Suppliers.. has a primary key supplierID right in your table2 which is supplierslocat ...Show All

  • Visual Basic Regkeyopen method of "advapi32.dll" has problem accessing registry from Windows Server 2003 R2 (64 bit)

    Hi All, while accessing the registry key values through RegOpenKey() of "advapi32.dll" imported in visual basic 6.0 running in windows xp it succeeds and testing the same component in windows server 2003 R2 (64 bit) environment this method fails. but this works fine in 32 bit environment. RegOpenKey(Group, Section, lKeyValue), I am not getting the lKeyValue and the method return long value 2. what is the long value 2 means pls do reply at the earliest. regards kailai Toddap_MS wrote: The above may be correct, although, the preferred way of dealing with the registry is to use the My.Computer.Registry routines to view/modify registry information which is in general muc ...Show All

  • .NET Development compressing binary files with GZIP

    I have been attempting to use C#'s GZipStream to compress binary files (JPG, PDF) files and the resultant file is always larger than the original file. The compression methods work fine on text files. What am I not understanding about this compression approach I have rewritten the compression methods using a variety of approaches and the results have always been the same... thanx for any pointers/advice/kick in the head... Kick: JPEGs and PDFs are already compressed so will just get larger when you try to compress them again. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Animating the bones from an *.FBX Modell

    hello there, I’ve created a 3d modell and now i wonder how to animate it... I don’t want to rotatet or translate the whole model, I just want to create an animation by working with the bones...unfortunatly I did’nt find an example file where this is done. also I wonder how a allready present animation( which is created in a 3d modelling programm ) can be started. thanx alot, ScaryJack Check out the animation components and samples available on the codeplex site: http://www.codeplex.com/animationcomponents ...Show All

  • Windows Forms IIS: Server Application Unavailable for aspx

    I get this error message every time I try and run a local and personal aspx page on my local IIS server (IIS v6, .net2.0), server that i have just installed on my XP pro box. Any idea what the cause could be thanks in advance for your help and happy new year! ERROR: Server Application Unavailable The web application you are attempting to access on this web server is currently unavailable. Please hit the "Refresh" button in your web browser to retry your request. Administrator Note: An error message detailing the cause of this specific request failure can be found in the application event log of the web server. Please review this log entry to discover what caused this error to occur. IIS LOG: #Software: Microsoft I ...Show All

  • Software Development for Windows Vista Using custom activities in Visual Studio

    I'm trying to use the Send Email and SqlDatabase activities but can't seem to use them in the WF designer. I've downloaded them, built the projects and then added the assemblies to the toolbox via 'Choose Items...'. But when I try to add them to a workflow, nothing happens, they never get added. The Properties window shows the properties for the activity until I select another activity but that's it, nothing added to the designer or the code behind. I'm sure this is really simple, anybody know what I'm doing wrong Thanks, that helps. Guess that's the way to fix these kind of problems. The issue seems to be with the Designer classes that set up various properties in their Initialize methods. The exception thrown is Theme properties ...Show All

  • Visual Studio 2008 (Pre-release) DLINQ & Remoting; LINQ over Active Directory

    1. Does DLINQ supports remoting What will happen if I'll pass DLINQ entity out of application domain via remoting 2. I'm interested in using of LINQ to perform queries over active directory database. Any suggestion Hi Jonathan, I have vista ultimate and tried installing DSML.When i tried to configure DSML services it says "Can't connect to IIS, please check to make sure IIS is installed".I checked for IIS and have also set IIS 6.0 compatibility. Any suggestions .Thanks for your help in advance. Regards Raj ...Show All

  • Visual C# How to check if a file is writtable?

    I used : if ((File.GetAttributes(file) & FileAttributes.ReadOnly) != 0) gave me error, saying The given path's format is not supported. Hi System.IO. FileInfo fi = new System.IO. FileInfo ( @"C:\abc.txt" ); if (System.IO. FileAttributes .ReadOnly == fi.Attributes) { //The file is read only. } //OR if (fi.IsReadOnly) { //In 2005 The File is read only } ...Show All

  • Windows Forms How to load more than 1 million items in ListView without killing the memory?

    Hi all, I have a situation here. I need to read a large log file, in general will be more than 100MB, and with more than 1 million lines of text. I need to load them into a ListView to display. The problem I have is: usually after I load everything, my application will take about 300MB in memory. I'm wondering how to free my memory and make it lighter. Part of my code is below: using ( StreamReader sr = File .OpenText(ilf.fileName)) { string oneLine = String .Empty; string lineNo = String .Empty; string msg = String .Empty; while (!sr.EndOfStream) { oneLine = sr.ReadLine(); lineNo = oneLine.Substring(0, oneLine.IndexOf( ' ' )); msg = oneLine.Substring(oneLine.IndexOf( ' ' ) + 1); ...Show All

  • SQL Server Error trying to create cube partition

    I've converted 4 AS2000 databases to AS2005. In just one of these databases, I am not able to add any partitions to any of the cubes. As soon as I click the "New Partition" link, get the following error: The wizard will close because of the following error: An item with the same key has already been added (mscorlib). I get this error if I try to create a parition from either Visual Studio 2005 or SQL Server Management Studio. AS2005 version is 9.00.2047.00. I can add paritions to cubes in other databases on the same server. I've been all over looking for help on this, with no luck at all. If anyone can help me, I'd sure appreciate it. Most likely something went wrong ...Show All

  • SQL Server Got the same problem

    Hello. I use VS2005 and I was trying to make a little program able to connect to a MySQL 5.0.18 database through MyODBC 3.51.12. I can connect to the database and I can load a table in the Datagridview control, but I can't update the table: the wizard didn't generate the Update method. Even if I configure again the tableAdapter, the wizard generates only: SELECT statement table mappings Fill method Get method The table is a very simple table: it has 3 columns and the first is a primary key. If I create an identical table using Access database and make a program that connects through ODBC, I don't have the problem: the wizard generates also the UPDATE, INSERT and DELETE statements. Where is the difference What is the problem Thankyou so ...Show All

  • Visual C# Search for Substring in AutoCompleteStringCollection()

    I have a problem that I'm trying figure out with AutoComplete. I have dynamically created a AutoCompleteStringCollection and have multiple values however I would like this control to be very responsive so I want it to search for a substring in a AutoCompleteStringCollection Item. For instance say my collection has the following values Apple, Ardvark, Baker, Blue, Bannana When I press "a" the auto complete comes up but only list Apple and Ardvark, However there is an "a" in Apple, Ardvark, Baker and Bannana. I've been trying to figure out how I can get AutoComplete to search for a substring but I've had no succsess. Any help would be much appriciated. Nic hmmm ...Show All

  • Visual Studio 2008 (Pre-release) Visual Studio .NET Orcas January is out...

    So, I took a look at the post from Guy Berstein indicating that the January CTP of Orcas is out. Here's one of the bullet items from his blog: Extended, more powerful data APIs with the ADO.NET Entity Framework and LINQ to ADO.NET So.. given that - to what extent is the Entity Framework supported in this CTP of Orcas Will I be able to install the designer Should I convert from my current May LINQ/August EntityFramework install to this install Kevin If you read between the lines at the chat they did a while back, you would have know this already. In fact I put together a summary stating as much here at the time. Still I have to agree the summary on the MSDN download page is not clear, it looks like you get everything. So ...Show All

  • .NET Development How to randomly delete 1 row from a DB ?

    Hello, I'm writing a program with the help of VB 2005 Express. It is connected to a DB using SQL Express Server 2005. In my program I want to randomly delete some rows from the table. I use the VB code: Dim WhichOne As Integer = rnd() * 40 (where 40 is the amount of entries in the DB) Dim DeleteQuery As String = "DELETE * FROM Table LIMIT '" & WhichToDelete & "', '1'" Dim DeleteCommand As New SqlCommand(DeleteQuery, myConnection) DeleteCommand.ExecuteNonQuery() If for example WhichOne = 17, it should execute an SQL query: DELETE * FROM Table LIMIT '17', '1' Which imo should delete the 17th entry in the table. Now I get an error on the execution of the SQL command, but what is it that I'm doing wrong ...Show All

©2008 Software Development Network