Software Development Network Logo
  • Visual Basic
  • Visual J#
  • Architecture
  • VS Express Editions
  • Smart Device
  • VS Team System
  • Visual C#
  • Windows Live
  • Visual C++
  • .NET Development
  • SQL Server
  • Visual FoxPro
  • Microsoft ISV
  • Windows Vista
  • Game Technologies

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

LukeB

Member List

numberonesuperguy
Graham Parker
Hua Wang
nano2k
Scott Lentz
nahn
Billy Anders
Bob Keller Jr
Balasaheb
AbdullahGhaleb
Akram Hussein
ShawnShawnShawn
frogggy
C!77LVR
PetePark
DHRITIMAN BANERJEE
chaudakh
Ben van Erp
YZANGARD53535
Humphrey McGee
Only Title

LukeB's Q&A profile

  • .NET Development host ,shim ,mscoree....???

    I want to understand how clr is working.I am reading whatever i find nowadays.I have some questions: 1-)There is a word "host" in articles What does this word indicate What must i understand Is it my managed application codes Or part of my managed application code which executes within clr 2-)Also there is one word i don't understan is "shim".Does shim mean mscoree.dll 3-)mscoree.dll ,mscorsvc.dll, mscorwks.dll. Are these dlls include manged code or unmanaged code Ayn answer, links,help will be greately appreciated... ok. Thanks for help.Now i am looking this blog. I have one question more.In your fir ...Show All

  • Visual Studio Team System Permission problems

    hello, I've created a domain group "ts\developers" with two users: dev and dev2. Then in Team Sysem I created a TFS global group "Developers" adding "ts\developers" windows group as members (not each devx windows accounts). The "Global\Developers" TFS group has the following permissions: - Access the version control system - Create a workspace - Create new projects - Edit domain-level information - View domain-level information At the team project level the permission for the "Global\Developers" are all except - delete test results - delete this project When I open the team project froman dev account (ie dev1) which is member of "ts\Develop ...Show All

  • .NET Development 32-bit .NET and MDAC

    I have a 32-bit .NET 2.0 application that uses MDAC 2.8. Does a x64 computer with MDAC 2.8 SP2 have the 32-bit version as well I wouldn't imaginge that a 32-bit program could use the 64-bit MDAC libraries. If not, can it be installed in conjunction with the 64-bit one JR Most of the odbc are only available in 32 bit. Sql server is the only exception that I know of. As long as your application is compiled for the x86 processor it will use the 32 bit drivers. ...Show All

  • Visual C# OTP: Block/Kill Ip adress

    Hi all, Im not sure im posting right but didnt know where to post this. Anyway my problem, i got this server where several peopels connect to to my ip and a specifik port, i wonder if it is possibel to kill a connection between my ip/server and one of thos ip that is connecting to me Lets say 83.227.39.91 is connecting to me is it possibel for me to kill/terminate that connection Best regards I'm sorry, the reason you could not find the right place to post this is that all of these forums are for programming questions, this question is off topic on all of this site, you'll need to find a place where it's on topic to ask it. ...Show All

  • SQL Server Can't Design a Script

    I've placed a Script Task in a package, but the "Design Script..." button only closes the dialog and nothing happens. I've tried a Script Task in an empty package, too. This is a vanilla 2003 virtual PC. No previous beta/CTP versions installed. RTM bits of SQL 2005 and VS.NET 2005 Pro. I can edit macros in VS.NET, so I'm sure the VSA environment is around. No event log entries. Typically run as non-admin, but tried as admin, too. Anyone ever seen this ...Show All

  • Visual C# file upload user control

    well... i created a user control - <form id="Form1" encType="multipart/form-data" runat="server">  <table>   <tr><td><input id="filename" type="file" name="filename" runat="server"></td>    </tr>   <tr><td><input id="uploadBtn" type="button" name="uploadBtn" runat="server"></td>   </tr>  </table> </form> it has a form tag ...so when im dragging it to my applicaion im getting the error- System.Web.HttpException: A page can have only one server-side Form tag so the question is -> is it po ...Show All

  • .NET Development Controlling the Number of Processes Running.

    Hi, Ive created a small app which reads a list of excel documents from a database.  These excel sheets when opened run a macro which refresh other sheets, once that is done the sheet closes automatically. What i want to do is limit the number of jobs that the app kicks off to around 2 but how can i tell when the Excel sheet ive opened is finished running its macro.  When i start the process can i check to see when it has closed At the moment im using [code] System.Diagnostics.Process.Start("excel", _jobfilepath) [/code] to start the Excel process.  Can i tell when that Process stops or ends ...Show All

  • Windows Forms Any shortcut to passing a form as an argument?

    Any shortcut to passing a form as an argument I was hoping that vs 2005 would ease the problem of passing a form as an argument over vs 2003.  Looks like not.  It is very cumbersome to overload a procedure for each form, so much so that there's no reason to do it. sub XXX(frm as New Form1) Sub XXX(frm as New Form2)   etc. It's easier to repeat the code within the form.  Is there a workaround dennist Adam, Oi, ve voi.  Thank you very much.  I was hoping studio 2005 would have had a shortcut.  Looks like it doesn't. Thanks again. dennist ...Show All

  • Software Development for Windows Vista Changing activities Id's

    Hi. I have an application that embedds the workflow. In some point of the application, I let the user change the activity Id through a custom form of mine, but that seems to generate a problem. When the user changes the Id, and then drags another activity of the same type to the workflow, it throws an exception saying that the activity already exists. The code that I write to change the activity ID is quite simple: activity.ID = "someNewID"; //Perhaps I have to do something else after this code... I'm with the Beta 1. Any clues Thanks in advance. I did that and everything was fine. What I'm really t ...Show All

  • Visual C# 'Couldn't find specified module.', 'FileNotFoundException' when declaring class

    When I declare a class from a referenced DLL (TrueVision3D.dll), Visual C# (2005 Express) throws a FileNotFoundException, containing the description: ' Couldn't find specified module. (Exception from HRESULT: 0x8007007E) '. The strange thing is this source code and DLL worked before, but after I reinstalled Windows XP it doesn't work anymore. All required dependencies are there in the right place -already checked that. Also: it only appears when debugging. When I run the Release executable, it just runs. Little sample code: static void Main(string[] args) { TrueVision3D.TVEngine engine; << this line throws the actual error. Sy ...Show All

  • Visual C# What algorith does garbage collector uses,Why it is non -deteministic ????

    Recently I faced an interview in which this question was asked "What algorithm garbage collector uses and why its non-deterministic " Please explain it... If you want even more info, check out the following episode of .NET Rocks. This was an interview with Chris Sells, one of the people who complained to Microsoft about the lack of clean-up optimization until the Dispose() pattern was implemented. http://www.dotnetrocks.com/default.aspx showID=10 ...Show All

  • SQL Server Collapsable Columns not showing up in export to Excel

    Dear Anyone, I have created a report that has collapsable columns. We had used the visible toggle property in reporting services. While the colpsable column works well in report manager, it doesnt work anyone when we export the report to excel. Even of the report is expanded, the report in excel would always show up with just the columns that are the basis for the collapsable column. Is this really the behavior when it comes to collapsable columns and exporting to excel Example: Column A toggles Column B, Column C and Column D. Thanks, Joseph I've solved this issue setting the hidden columns to be by defualt v ...Show All

  • Visual Studio Express Editions How to use the Window API --ReadFile() to get the text file's text become to TEXT mode

    Hi there! Sorry ,my english is poor ,please try your best to understand what the question that i ask,Thank you! Question: I would like to get the text file contain ,Window API ReadFile() just can read the text file contain become the binary mode only ,i known that fopen() have the flag to set the mode that you want ,but CreateFile havn't this option,Plz help me to solve,Thank all Matthew AFAICT, you will have to perform this conversion yourself (replace all "\r\n"s with "\n"s). Is there a reason why you must use ReadFile() fopen()/fscanf()/fread() is the better function to use in most cases. ...Show All

  • .NET Development Client/server socket application problem - files sent are incomplete

    Hello all I am having problems with a Client / Server application I am writing. I want to send a file from a client app to a server app, and I have created code to do so. I am using VB.NET 2003 and testing on WinXP SP2 for both machines (firewalls disabled). However I have run up against an apparently insurmountable problem (for me). When I test by running both apps on the same computer I have no problems, receiving the test file properly but when I run the client from another PC on my LAN the file only comes through partially (truncated). I have also noted that if I step through the receiving code of the server manually, it works prope ...Show All

  • SQL Server Making use of RGDI output

    According to the Reporting Services feature matrix, the image output that Report Server Express has is something called RGDI.  From what I've gathered, RGDI stands for Remote GDI. What is the RGDI file format useful for   I don't know the proper file extension to give the file, nor do I know what viewer can view it. Is there some way to convert the RGDI format to a more universally accepted file format such as .tif, .gif, .jpg, etc...   I'm hoping that I can just capture the binary stream, and convert the stream to a different image format before saving the file. Thanks! Brian, I would like to save the results of a Rende ...Show All

©2008 Software Development Network