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

Software Development Network >> Scott Ha's Q&A profile

Scott Ha

Member List

Younis
GHSR
Yorik
Shubha Iyer
JWallis
Shen Yizhe
StefanoUD
numberonesuperguy
StRoNg-WiLLeD
retuchntousender
JoeQ
Anthony Dewhirst
MAT4Ron
Steve Simpson
Eric Richter
JerryF
billoo
Binay
DeepeshMS
ManishPPPP
Only Title

Scott Ha's Q&A profile

  • Windows Forms Missing system.resources.dll

    Hi All, I have a small problem which I cant find answer anywhere. I wrote a small applcation in C#. It support english and German, So I am using resouce files for german and they all stored under the "de" and the "de-DE" folders. My Application loads through Internet Explorer ( IIS ). when I connect to my page from a German client console and check the IIS log files i see that a lot of GET command failed (404). the strage thing is that those dll are : system.resources.dll and mscorlib.resources.dll. My application is still working BUT I cant figure out why it searches for those file (.NET files) and if there is any way to solve this annoying ...Show All

  • .NET Development I'm sure this isnt the right place for this question but ....

    I was wondering if microsoft is ever going to make drivers available for Windows XP 64-bit edition. I just purchaced a fingerprint reader (a microsoft product) only to find it does not work in XP 64. I have searched everywhere I can think of to find out if there was a driver available but it doesnt seem to exist. Then I looked at the microsoft hardware site and randomly looked at driver downloads for their hardware and none NONE were available in a 64 bit version. How can microsoft sell hardware that is not compatable with their own operating systems and how do they expect people will want to buy the 64bit edition if nothing works Please ...Show All

  • .NET Development Calling a C# executable from windows explorer shell context menu

    I have written a simple application in C# (2005 Express Edition) / Windows Forms that displays diskspace usage for a given file/folder as a pie chart that I wish to access from the windows explorer context menu. I have managed to add an item to the context menu for all folders using the file types tab in the folder options dialog within windows. This is sufficient for me as I don't intend to distribute this application, it is only for my own personal use, so adding it manually is OK. My problem is that I don't know how to find out which folder was right-clicked from within my application. Is the folder name simply passed as a parameter ...Show All

  • SQL Server W2K3SP1, IIS, Forced directory browsing

    My Reporting Services broke when installed W2K3SP1. Users can get into the report list but when they select a report the request is translated into a request for a directory listing from the Report Server. If I enbale directory browsing for the report server the directory list is returned. If disable directory browsing then a 403 error is returned. I am also getting this error with OWA services on my exchange server. Any ideas This is really frustrating... No ideas I tried rolling back W2K3SP1 but then IE6 became configured to download url's intead of displaying them. ...Show All

  • Windows Forms Serialization between different apps

    i want the data that i save from application1 to be used from application2 as far as i know serialization is the way to go and it worked excellently saving and loading inside the first application, but now i cant load the data into a second program. this is the saving code: ===============================================       If SaveFileDialog.ShowDialog() = Di ...Show All

  • .NET Development PLease Help me in Updating My DataBase .....!

    Can Any ONe OF You Please Tell Me Why My DATA BASE is not able to save the records which i add through my application .I can have new records added only still my apllication runs .Once i close and start i lose my new records . I give code here :(1 table called folder with 2 columns folderID increments automatically and FolderName takes from user for new records ) using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace updateBase { public partial cla ...Show All

  • Visual Studio Team System Error 28100.Error loading Event web service.

    Hi,   During installation I got "Error 28100.Error loading Event web service.". Any idea what is going wrong TFS is being installed on a Virtual Machine.   Please feel free to contact me if you need any more information. Thanks, Bart ps. Is it possible to upload the setup log I went back to some lessons learned when installing tfs beta 2, one of which was to install wss before sql server (even though the install guide says to do it after).  I installed wss, stopped the default web site, set the sharepoint site to port 80, then installed sql server.  Then I manually configured report ...Show All

  • Visual Studio 2008 (Pre-release) svg + xaml

    Why can I only have 1 scalable vector graphic reference file saved with-in a xaml file and thats the only view and detail the glpyh/icon can have... if you scale-down a 256x256px graphic to like 16x16px it looks bad unless the 256x256px is very simple which brings be to my next point that if you would make a simple 16x16px graphic and scale-up to 256x256px the graphic would look to simple and not rich enough which would make that size pointless to scale to... wouldnt it be a better solution  if you could set a scalable vector graphic reference file for each square number example ..., 16x16px, ... 32x32px, ..., 256x256, ... ...Show All

  • Software Development for Windows Vista When adding a bitmap to a popup menu the item goes black when selected.

    I added a bitmap to a popup menu as a menu item,  however, when the item is selected the area of the bitmap goes black (instead of blue) while the rest of the menu stays blue. Is this a problem with transperancy Laura Since you haven't provided any more information I had to write my own program. Works for me on Windows Vista exactly the same as on XP; I don't see how this is a peculiarly Windows Vista UI question. Start with the scratch program and add this function: void OnContextMenu(HWND hwnd, HWND hwndContext, UINT xPos, UINT yPos) {  HMENU hmenu = CreatePopupMenu();  if (hmenu) {   static const ...Show All

  • Windows Forms Windows Forms Book

    Can anyone recommend a good book on windows Forms that contains a great deal about connecting to databases and xml web services There seem to be hundreds out there but I'd rather buy one that one of you guys recommends! Many thanks, James ...Show All

  • Visual Studio 2008 (Pre-release) Exception while creating proxy

    Hi I have a java app that exposes web services. I want to consume those web services. When I ran svcutil against the wsdl I got the following error. Warning: Unable to import wsdl:portType Detail: An exception was thrown while running a WSDL import extension: System.Se rviceModel.Description.XmlSerializerMessageContractConverter Error: Exception has been thrown by the target of an invocation. XPath to Error Source: //wsdl:definitions[@targetNamespace='http://localhost:808 0/MyApp/soap/MyApp']/wsdl:portType[@name='MyApp'] Can anyone tell me what could be the issue here Thanks Murali can you pl ...Show All

  • Visual C# convert help

    I have a dll with a method that reads from a pdf file. It needs a byte array parameter. I read from another pdf and i get a string (or a char array). Now i want to convert from string to byte array. I tried Encoding.UTF7/8/ASCII/Unicode.getBytes(string) but they don't work properly (\n\r not converted) I also tried to convert char by char in byte but i have also a perthousand ( %o ) that creates problem Help! Thx A char in .NET is 2 bytes. A string is essentially an array of chars. If you're reading binary data you should always use byte, not char/string; your data will most likely get mangled. ...Show All

  • .NET Development FtpWebRequest re-sending USER and PASS commands half way through download loop

    Well, the title says it all really: I'm using FtpWebRequest to download multiple files as follows: private string GetFile(Uri uri) { string un = Misc.ReadRegKey("ParserFtpUsername"); string pwd = Misc.ReadRegKey("ParserFtpPwd"); string file; NetworkCredential cred = new NetworkCredential(un, pwd); WebProxy pxy = new WebProxy(); pxy.UseDefaultCredentials = true; FtpWebRequest wr = (FtpWebRequest)WebRequest.Create(uri); wr.Credentials = cred; wr.Proxy = pxy; wr.UseBinary = false; wr.Method = WebRequestMethods.Ftp.DownloadFile; FtpWebResponse resp = (FtpWebResponse)wr.GetResponse(); ...Show All

  • Windows Search Technologies how do i get alerts whrn i recieve a new email in a subfolder? i have outlook 2003.

    ^ Hello arvol3, This forum is for questions specifically related to Windows Desktop Search. You can find more information about customizing alerts here: http://office.microsoft.com/en-us/assistance/HP010416051033.aspx Other information to note: - If you are using rules to transfer email from your inbox to your subfolders, you should still receive alerts. - If the subfolders of which you speak are public folders to which people are sending email directly, you may need to generate some special server-side script to send the alerts. Additional information about this can be found here: http://msd ...Show All

  • SQL Server Miss tables in replication

    I have setup a transactional replication from oracle to MSSQL2005. One of the publication includes 26 articles but I found that there are only 24 articles replicated to the subscriber DB. I found that the repldata folder includes only files for 24 articles only. Besides, I double check the publication properties, totally, there 26 articles. Please advise. Thanks in advise. did you set this up through the UI Anything interesting/particular about the two articles that did not get replicated ...Show All

©2008 Software Development Network