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

Software Development Network >> Bulldog.NET's Q&A profile

Bulldog.NET

Member List

Dylan Smith
Stefanos Kouroupis
ackermsb
Sarwanan
FrankChen
Wojo
mdschwarz
HowardRichards
thelonesoldier
j_o_h_a_n_n_e_s
Jehan Badshah
Knvb1123
TwoSixTwo
Dan_Dan
d kretz
Andrew Shearer
Juan G.
brhoom
John Papa
winstonSmith
Only Title

Bulldog.NET's Q&A profile

  • Visual C++ Help Me Please

    Hi im learnig VC++ 2005 and something wierd is goin on with my compiler.. when ever i build and run my projects an error pops up saying "This Application Has failed to start because MSVCP80D.dll was not found. Re-installing the Application may fix the problem." but here is the wierd part the file MSVCP80D.dll is present in my C:\WINDOWS\WinSxS\x86_Microsoft.VC80.DebugCRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_f75eb16c folder i can see it but how come VS is not detecting it and i even tried re-installing the software but it doesn't seem to work can someone please help me!!! Thanks Your output window will say "Configuration: Debug Win32" for debug, and "*Release Win32" for release build. ...Show All

  • SQL Server Problem with inconsistent report data

    I am generating a report using Sql Reporting Services, with Sql Server 2000 as the backend. Sometimes, the report shows data which is not matching with the actual data available in the database. Though the query, which is used by the report is tested in the query analyser and it is successful. Anyone, who can solve this issue, please !!! Thanx Adam. I tried the report in the preview and also in the browser, the result is the same. The data to the report is generated by using a cursor declare @count uniqueidentifier declare cursor_a cursor for select Busi_ID from Temp_View_BusinessUnit open cursor_a fetch next from cursor_a into @count insert into Temp_BusinessUnit select distinct(business ...Show All

  • .NET Development Tcp Socket | pending the data or not to be

    me have new question about Tcp Socket Async operation. let say the server are sending a data (512 bytes) to client, during the data still sending (no matter due to internet delay or resend cause by wrong package) server send again another 512 bytes data. those 2 data will always arrive in order or not another question is: me don't know exactly how the async work, will it crash or error if sending too much data at once while the previous data still in process(me have no idea how to test it, test on my local machine always seem ok -.-') should me implement a pending for the Socket Async send method(something like below, this is what me doing right now) function sendMessage(){ if(sending){ pendMessage() }else{ sending = true S ...Show All

  • .NET Development Very Urgent - System.IO.IOException: There is not enough space on the disk.

    Hi, We are facing a bug in which we are writing data to the excel file in the floppy and the floppy size is full it raise an “ IOException” (memory full) , in this case I am not able to close the StreamWriter object because StreamWriter Close () function internally call the Flush () method. But after sometimes or immediately ,i got another IOException of memory full and the call stack show that it raises when the Garbage Collector (GC) call Finalize() function. I do not wants this second exception , becuase i can not handle this second exception and sometime a process is also runing in the Task Manager after closing the application even i am using the Environment.Exit(0) function in Application for exiting the ...Show All

  • Visual Studio Express Editions How do I: add favorites? History?

    Hello all I have another question. I would like to know how to add favorites to a Menu strip item (like in Internet Explorer, how it has favorites). Right now I have one similar to IE, with an Item called Add To Favorites. Here is my code: Private Sub AddToFavoritesToolStripMenuItem_Click_1( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AddToFavoritesToolStripMenuItem.Click favorites.DropDownItems.Add(WebBrowser.Url.ToString) End Sub As you can see, I can add items but not be able to click on them and go to the page. I would like to know if it is possible to add a custom name for each one with the icon of the website (once again like IE). And I want to be able to click them t ...Show All

  • Visual C# best way to read pipe delimited text file?

    I am trying to read in a pipe delimited file and do certain processing for each field. I was just wondering what the best way to strip out each field is - is there anything built in .Net that will easily allow me to do this Or do I just loop through and remove each field myself Also, would it be best to strip each field out into a dataset first, and then do the processing Or, do the processing while I am separating each field Or does it not matter Thanks! Saeed yes you can and this is what it does...you are inserting 1 row of data at a time in the datatable, so when you update the database it will update it with those rows. Now, to me, it seems as if you have less columns in SQL database or data ...Show All

  • Visual Studio Team System after adding a hierarchy, it disappears again 'just like that'

    Hi, Something we really missed when switching to Team Foundation was to notion of 'user groups'. We track the expected load on e.g. the QA group with e.g. queries like "how much tasks are now assigned to people that belong to the QA group ". Now, to implement this, I added: 1) to the databases - a table UserGroup (with an integer as ID, and GroupName as varchar) - a field UserGroup to the table Person (an integer ID) 2) to the warehouse - a relationship between Person.UserGroup and UserGroup.ID (in the data source view) - a hierarchy to the dimension 'Person', with the field GroupName under the field User Group Now, after the necessary rebuilding of the cubes, I can make reports. Dragging happily GroupName fields into my reports ...Show All

  • .NET Development .NET 1.1 vs .NET 2.0 behaviour with Image fields

    In not .NET 1.1 and 2.0 the System.Type mapping for a SqlDbType of Image is byte[]. If you use this type to create a SqlParameter (with a value of DBNull.Value) and then use this in a SQL statement of the form "Update table Set ImageField = @parm where ......" Then in .NET 1.1 it works, but in 2.0 you get an Exception "nvarchar is incompatible with image" How can you determine the correct System.Type to use for Image fields, and why is the behaviour now different The application code is generic and not tied to specific database designs. Thanks Tony You might create a mapping to map the type to sqldbtype yourself (there might be a utility method to do so). ...Show All

  • Software Development for Windows Vista Run selective code in transaction

    Hi, I am very new to this enterprise services based programming (COM+). I have created a Enterpriseservices based component with the TransactionOption property set to 'Supported'. Now, I would like to know the following things. How to handle database related queries which dont require any type of locking How to run a part of a subroutine in a transaction While in transaction, whatever tables I have queried gets locked until I commit or abort the transaction. Because of this I am facing deadlock problems. How to handle such situations where I am sure that a lock to particular table is required eventhough its under a transaction Thanx in advance. Regards, Ram. Hey Ram, ...Show All

  • .NET Development WMI to get file/directory info

    Hi, I need to access to the content of a directory and the version of a file on a remote Win Server 2003 machine, is there any way to do this through WMI or System.DirectoryServices The directory in question isn't shared and i have the user and password of the remote machine. P.S.: using C# fixed, tkns to Alanfo from gotdotnet. -- Try placing an @ before the query string, which worked on my machine: oq = new ObjectQuery(@"Select * from CIM_Datafile Where Name = 'c:\\windows\\system32\\scrrun.dll'"); -Alan ...Show All

  • Visual Studio Express Editions Loading a list of files into a toolstrip combo box

    How do I Load a list of files into a toolstrip combo box Hi, the following code will load the list of all files in your root folder to the toolstrip combo: Dim files() As String = System.IO.Directory.GetFiles( "c:\" , "*.*" , IO.SearchOption.TopDirectoryOnly) ToolStripComboBox1.Items.AddRange(files) Andrej ...Show All

  • SQL Server SQL Server 2005 return null in primary key

    In a new instalation of SQL Server 2005. I've made a restore from SQL Server 2000 database. Solve some problem with the user, and it looks ok. I'm using a asp web aplication, with vb dll, and change the sql provider from "SQL Server" to "SQL Native Client". It works, but in some recordsets the value a recive for the table primary key is null If execute the querie in the database, the result has values in the primary key. the same appends when i connect to an SQL Server 2000 using "SQL Native Client". Please help, what can i do. I would check that the field names are correctly coming back. dim i as integer for i = 1 to rs.fields.count de ...Show All

  • SQL Server How to find Carriage Return CHAR(13)?

    I've been looking for this online and on MSDN but no luck. I simply want to find all my CR in specific columns and later Replace them with a string (ie. --THIS-IS-A-CR--). The problem is I cannot even find/search CHAR(13) by using variations of the query below. SELECT * FROM Incident WHERE (description LIKE '%CHAR(13)%') --I know this is incorrect try this SELECT * FROM Incident WHERE ( description LIKE '%' + char ( 13 )+ '%' ) ...Show All

  • Visual Studio Express Editions Problem with w95_s7.dll

    Hi I have w95_s7.dll with function unload_tool(). I try call this function in Visual c++ 2005 express edition. I don't have installed SDK. I add w95_s7.lib to resource in me project Prodave. I add w95_s7.h and call function: #include "w95_s7.h" ... ... ... private : System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) { int res; res=unload_tool(); } When I try build project linker send 3 errors: ------ Build started: Project: Prodave, Configuration: Debug Win32 ------ Compiling... Prodave.cpp Linking... Prodave.obj : error LNK2028: unresolved token (0A00000A) "extern "C" int __cdecl unload_tool(void)" ( unload_tool@@$$J0YAHXZ) referen ...Show All

  • Software Development for Windows Vista Resume standby timestamp ??

    Hi, all.......................I have a question about resume from S3 or S4. We use pwrtest.exe and event viewer to measure resume standby time. And we find resume standby time is too long, resume from S3 is about 2.5~3 sec; and S4 is about 2 secs. S3: DriverInitDuration 1922 m sec + BiosInitDuration 540 msec S4: DriverInitDuration 2192 m sec + BiosInitDuration 0 msec But Microsoft strongly recommands the S3 resume duration should be < 2 secs. Because we don't know which driver consume the longest time during resume duration. So is there any tool to measure resume duration for each driver (complete power IRP) Thanks in advance Hi Eddie: Please send an email to onnow@mi ...Show All

©2008 Software Development Network