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

Software Development Network >> Jeff Williams's Q&A profile

Jeff Williams

Member List

M Thorman
Watch Pick n Poke Action
Johnnie B.
ocertain
HelloHello
MickRivers.
amitsingh18
Ashton
ciphercodebreaker
I.Blagoev
Hikmer
Ajay Sudan MSFT
Gnana
vbhushan
Scott A.
Christopher Alden
Santos Ray Victorero, II
Raj Chidipudi
Anonymousrtewreer
Lester Leonard Go
Only Title

Jeff Williams's Q&A profile

  • Smart Device Development could not find file "file.jpg"

    hi all, i'm creating application which reads 1 "jpg" file, but i dont know where to place my "jpg" file so that application can read it. plz help me thanx in advance harish You can put your file everywhere, then let the user select the file using "OpenFileDialog" control : OpenFileDialog1.Filter = "JPG/JPEG Files|*.jpg;*.jpeg" If OpenFileDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then 'The file path is "OpenFileDialog1.FileName" End If Or put it in the application folder... ...Show All

  • Visual Studio VS Team suite Trial Installation: Error 1305

    Hello All, While trying to install VSTS Trial on Virtual PC 2004/XPProSP2 I received the following error: ERROR : Error 1305 . Error reading from file d:\vs\Program Files\Microsoft Visual Studio 8\SDK\v2.0\GuiDebug\shortcutCLRDbg32.txt.  Verify that the file exists and that you can access it. I could not read the file (but could see it on the dvd) from within the XPPro running on VPC 2004, but I could both see and read the file from my standard installation of XPPro SP2. I understand from reading previous posts that SQL 2005 Express will not install on VPC, but I can't even get to that stage. Has anyone else encountered this error, ...Show All

  • .NET Development Could not find stored procedure 'dbo.aspnet_CheckSchemaVersion'

    Hi, I'm using Visual Studio 2005 Professional and SQL Server Standard. I ran the 'aspnet_regsql' tool to enable the application services for my ASP.NET project. When using the WebPartManager control on my ASPX page, I encountered an error that tells that 'dbo.aspnet_CheckSchemaVersion' cannot be found. I guess this is pointing to the 'aspnetdb' database on my SQL Server. When I tried to navigate using Management Studio, I located the stored procedure, and verified it exists. I also overwrite the <connectionStrings> localSqlServer on my web.config file from named instance of SqlExpress to my local SQL Server 2005. Please hel ...Show All

  • Visual Basic visual basic Label number as a variable

    Is there a way to assign a variable to a label number for i = 1 to 10 label(i).Text = Name next i or something like that Bruce You can build an array of labels, or use the Controls collection already on your form to look for labels ( you can identify them by name or the Tag property, if you set it ). If label was a list into which you'd passed the 10 labels you want to set, and Name was the text you wanted to put on all the labels, the code you posted would work. ...Show All

  • Visual Studio Tools for Office SELECT Statement against Excel file?

    How can I run sql statement against excel file. I am using office 2003 and want to run retrieve information from a column in excel file.   SELECT DISTINCT Code FROM Excel_File_name Is this possible   Thanks   You need to place quotes around the extended properties in the connection string "...Extended Properties =""...""..." ...Show All

  • Software Development for Windows Vista about showwindow

    In early Windows version, the window is not be shown immediately after ShowWindow called, only idle or UpdateWindow called, it will be shown immediately. But in Vista, the window is shown immediately after showwindow called. Because it, the black will flash in the window. How to reslove it Thanks. When hbrBackground is set to NULL, you are supposed to process the erasing of the background.  MSDN documentation indicates: "If hbrBackground is NULL, the application should process the WM_ERASEBKGND message and erase the background. " If your picture covers the entire window client area, you could ...Show All

  • Visual C# singleton

    How do i make a singleton object so i do not have to make a new instance of a form see for using singleton in multithreading environments: http://www.oodesign.com/oo_design_patterns/creational_patterns/singleton.html ...Show All

  • Visual C++ msvcr80.dll Problem

    Hi there, can someone possibly tell me why Noton WinDoctor is telling me that 10 executables in the .NET Framework 2.0 cannot access the necessary dll file msvcr80.dll I see that the dll exists in the WinSxS directory and I'm running XP pro. I didn't have this problem until I downloaded the 2.0 framework at windows update. Any advice appreciated. Thanks. Naolin I am having the same problem... I even uninstalled it.. and it didnt show a problem then I reinstalled the update and it showed up as a problem in the Windoctor again... any ideas as to what is wrong with this update Im sure its a simpl ...Show All

  • .NET Development SQL Question??

    I want to set up my button control...so that if my data reader.HasRows then i want it to UPDATE the rows....If my datareader.HasRows is False then i want it to Insert the new information to its new ROW....here is what i came up with any help would be fantastic Private Sub btnSave_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click Dim sqlconn As SqlConnection Dim sqlcmd As SqlCommand Dim uptcmd As SqlCommand Dim dr As SqlDataReader Dim cstring, str As String sqlconn = New SqlConnection(cnConnection) sqlconn.Open() If dr.HasRows = False Th ...Show All

  • Visual FoxPro Preview container toolbar doesn't respond

    Hi: I'm creating a report that contains several chained reports. The obtained report is OK The problem is that I can't to do any actions with the bar. PreviewContainer. ToolbarIsVisible = .T. OK I'm able to change some properties: Caption, ZoomLevel, etc. That's also OK. I'm able to scroll pages with keyboard or mouse clicking to the Preview container screen. That's also runs OK. But the problem is that toolbar do not react anyway to a mouse click. Seems to be a modal window anywhere. I'm really confused here. Thank you, Regards, Ana Madrid, Spain www.amby.net Hi Ana Are you using VFP9 Service Pack 1 There was a fix in that for a s ...Show All

  • Visual Studio Express Editions vs_setup.ms_ not 'expanded'.

    I downloaded the VC++ Express Beta 2 image and burned it to a CD. Then I ran the setup.exe from the CD.  The install failed because the image had the file mentioned in the subject header, not it converted form, *.msi. I used IsoBuster to install the image and then expanded the vs_setup.ms_ file to vs_setup.msi The install then proceeded normally. OK, I was finely able to get the VB 2005 express setup to work by first installing the Windows Installer 3.0 (and rebooting).  The problem is not with the express setup program(well not entirely).  However, Microsoft made a big assumption that ev ...Show All

  • SQL Server Cannot change default server port 1433 on SQL Server 2005

    Hello, On SQL Server 2005 Dev Ed I have disabled all protocols except TCP IP. With Sql Server Configuration manager, I have set the server port to 1450 (in sql server 2005 network configuration) and the client port to 1450 (in Sql Native Client configuration). The result is that I cannot connect anymore to my local server. I get the following error: Cannot connect to ... Additional information : ...TCP provider, error 0 - no connection could be made because the machine actively refused it ... Moreover, when I run netstat during the connection I see a SYN to port 1433 which would tend to suggest that despite my configuration SQ ...Show All

  • Software Development for Windows Vista Installing VISTA on a USB Hard Drive

    No matter what I try I cannot get VISTA to reconize a partition on an external USB drive.  The partition is always displayed as UNAVAILABLE.  Even, though I can hit F10 and use DISKPART to create and format it still will not reconize the partition.  Do I need a special driver   Scott Pfaf Trying installating a previous OS, such as XP, and then using the Windows Interface to initiate the install. I've found that sometimes it wont work it there is no data on the disk. It may work.. then again may not.   Good Luck! ...Show All

  • Visual Studio Express Editions TableAdapter.Update does not save data

    How can I save data entered in a dataset via the UI I tried the code suggested in the "VB Guided Tour", Private Sub Form1_FormClosing( ByVal sender As Object , ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me .FormClosing Me .AddressesBindingSource.EndEdit() Me .AddressesTableAdapter.Update( Me .SQLdbDataSet.Addresses) End Sub but all changes are lost when I restart the application. Thanks. I have the same problem in C# even if you don't use a tableAdapter but a sqlCommand object instead.  Though affectedRecords reflects the correct rows affected. ...Show All

  • Windows Forms Databound Combobox Problems

    VS 2005 allows us to drag a table (Detailed View) from the Data Sources window to automatically create an form that has databound controls, Binding Navigator, Binding Source, etc. I have a Contacts table and a Categories table. Categories is the Parent (One) table. Contacts is the Child (Many) table. Categories (<CategoryID>, Name) Contacts (<ContactID>, <CategoryID>FK, Name) CategoryID and ContactID are int Identity not null fields. Combobox settings are: Data Source: categoriesBindingSource Display Member: CategoryName Value Member: CategoryID Selected Value: contactsBindingSource - CategoryID I have a form that ...Show All

©2008 Software Development Network