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

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

FatherJack

Member List

swdeveloper
xesteban
DmitriyKot
gariche
KPLNG
Volker W.
gpdujour
boris_skarbo
Yo123
ALi YUKSEL
mageets
alext_2002
Moustafa Ahmed
Shaun Miller MS
Jorge Lalinde
SohailB
Paul Dimitrov
Divya
richie m
Misha Shneerson - MSFT
Only Title

FatherJack's Q&A profile

  • Visual Basic VS-2005-Prof. Debug breakpoint not working

    Hi - I just installed Visual Studio 2005 Professional Edition. I was previously using VB Express Edition. I see that the program execution does not halt at the specified breakpoints. Also, when I "Start Debugging {F5}" the application ignores all errors and executes the last good build. I have looked at the project properties debug settings and did not find anything I can change to fix this problem. Could somone help out Thanks in advance. Shiku Try cleaning your solution. Also, try manually deleting old builds of you applications and any PDBs there. Hope this helps! Thanks, Ayman Shoukry VC++ Team ...Show All

  • Visual C++ looking for a better book on visual c++

    Ivor Horton's book "Visual C++ 6" is a great book about C++. But, I am finding more and more that it is not a great book on the gory details of Microsoft's VC++ program. In the VC++ programming environment, there are menus within menus within menus that are never mentioned in Mr Horton's book. I would be interested in getting a book with much more detail on navigating the VC++ programming environment; topics like *) using the project properties popup to specify additional include directories *) how to compile several different classes in several different projects into a single executable *) how to use commands such as " ...Show All

  • .NET Development Nested queries to populate a DataSet using OdbcDataAdapter

    The class listed below uses a CSV file and OdbcDataAdapter object to populate a DataSet using a nested query BUT I keep getting an Access Violation exception when I call OdbcDataAdapter.Fill(). The message is: "Attempted to read or write protected memory. This is often an indication that other memory is corrupt." This is written in VS 2005 (.NET Framework 2.0). Are nested queries in the SelectCommand() method of the OdbcDataAdapter object not valid I essentially need to execute this SQL query to populate the DataSet with different pressure/temp combinations.  The query executes perfectly in Query Analyzer:  SELECT Value,Pressure ...Show All

  • SQL Server SSPI handshake failed with error code 0x8009030c while establishing a connection with integrated security; the connection has be

    Hello, I have a sql 2005 server, and I am a developer, with the database on my own machine. It alwayws works for me but after some minutes the other developer cant work in the application He got this error Login failed for user ''. The user is not associated with a trusted SQL Server connection. [CLIENT: 192.168.1.140] and When I see the log event after that error, it comes with another error. SSPI handshake failed with error code 0x8009030c while establishing a connection with integrated security; the connection has been closed. [CLIENT: 192.168.1.140] He has IIS5 and me too. I created a user on the dom ...Show All

  • Visual C++ how to let visual studio not to find certain dll?

    hi i can compile my program, but i can not run it, because it will popup an error message saying the system couldn't find dkcert.dll. I've removed a software which provides the dkcert.dll, because i want my program not to link to the dkcert.dll, but to ep2pk11.dll which i put in the same folder as my source code. but it seems visual studio will always keep searching for the dkcert.dll instead. i've uninstall and reinstall visual studio a couple of times but the problem still arise. any help is greatly appreciated. thanks. p/s: dkcert.dll and ep2pk11.dll are dll provided by two different companies, but both utilize the cryptoki library. ...Show All

  • Microsoft ISV Community Center Forums Left Joins with Multiple Conditions in VBA

    Hello, I am trying to run a query in Excel VBA. The query has a left join with a two conditions -- every time I run it excel crashes. If I remove the brackets enclosing the two conditions, the query fails. The query itself is correct because if I run it directly in Oracle it works. Also I can run it thru excel via Date->Import External Data but not thru VBA. Also if I restrict myself to one condition instead of two it works thru VBA. Any one have any insights into what the problem could be Or any proposed workaround... Thanks in advance. Saleem Dim db As Database Set db = OpenDatabase("", dbDriverPrompt, False, "ODBC;DSN=FM;") Query = " ...Show All

  • Visual FoxPro Converted VFP 3.0 Project

    I have made a few changes to my 3.0 project and it seems to compile and run fine after compiling with 6.0 or 9.0. Is there any advantage to 9.0 like better compatibility with Windows XP SP2 or Windows Vista Thanks SET ENGINEBEHAVIOR 90 is the default in VFP 9, so you don't need to include the command at all. Just take the attitude that you don't want any of the other settings and fix your queries. Also, to answer another o ...Show All

  • Windows Forms Could not bind ... ValueMember

    Hi I'm trying to run the code below: Me.cboPreferredContact.DataSource = respComms.Tables("Table").DefaultView Me.cboPreferredContact.DisplayMember = "comBy" Me.cboPreferredContact.ValueMember = "comById" and I keep getting the error: "Could not bind to the new value member.  Parameter name: value".   The field "comById" does appear in the table (I can reference it when debugging). Does ...Show All

  • Visual Studio Tools for Office How to Show Complete Format Cells dialog

    I have a VSTO 2005 solution with some controls on the action pane that I would like to refresh when the user changes the formatting on a range. Is there a way to programatically show the Format Cells dialog using Excels built in dialogs I have tried using some of the built in dialogs that are part of the Format Cells dialog (like xlDialogFormatNumber, xlDialogAlignment etc), but I can not find one that displays the entire dialog as you would see it when clicking on "Format Cells" from the Context menu or "Cells" from the Format menu. Thanks Patrick Hampton Here's the link to the e ...Show All

  • Visual Basic numeric calculations problems

    Hi guys, I have a problem in working out some calculations within a form. My form is called, claddagh_database, which is linked to data from an access database using Jet 4.0 I have some fields with money values in, Total value inc VAt, Deposit, Stage Payment & Balance Payment. In access I had a field called Money Due, which was calculated using the expression  Sum=([Total Value Inc Vat]-[Deposit]-[Stage Payment]-[Balance Payment] This then showed how much the customer still owes. The thing is, I cant seem to do this in VB.NET..... ( or find an equivelant function ) I have looked in a few books I have, website etc etc, and just cant ...Show All

  • Visual Studio 2008 (Pre-release) COM interop and WPF?

    I tried to use the SolidColorBrush class from COM as a test of some interop code I am working on. I was able to create an instance, but it only supported IUnknown not IDispatch, while a class I wrote myself does support IDispatch. The defailt for ComVisible is True, and the documentation shows no change in this for the whole hierarchy of this class. Is there something I am missing on this Would you expect to be able to get an IDispatch for an instance of SolidColorBrush Using WPF from COM isn't a scenario we've tried to enable (or plan to); as far as I know we don't have any code that tries to either enable or disable it. I'm ...Show All

  • SQL Server Change query issues

    I am trying to take this statement: Select Total = SUM(gt) FROM (Select Distinct CustomerName, CustomerNumber, FeeGoal_AZ AS FG, FeeSchedule, (cast(FeeGoal_AZ as numeric(30,10)) / FeeSchedule) * 100 AS gt from DCR WHERE branch='00002' group by CustomerName, CustomerNumber, FeeGoal_AZ, FeeSchedule ) as dTable and change up (cast(FeeGoal_AZ as numeric(30,10)) / FeeSchedule) * 100 AS gt I need that part to do this instead there: (PostedAmount + Sum of all PDC where the PDC in this month + Sum all CC where CC in this month) / FeeSchedule) * 100 as gt Here is my failed attempt: ...Show All

  • .NET Development Database UPDATE problem.

    Just a question. Im really wondering why my sample database program wont update. It will say that it has updated the actual database but when i double check, it didnt. I am not using the command builder coz i want my own sql codes. When I test using the query builder, i will see the data being updated or added but when i use my own program, it really wont. Actually i have this one sample database program that updates ok. I just dont know why I cant do it again. Im really pissed off thinking abt it the whole night. I ommitted the INSERT and DELETE commands since they dont work too. h ...Show All

  • Windows Forms Columns magically removed from DataGridView

    I'm experiencing a very perplexing problem.  I have a DataGridView that will inter mittently lose all columns that were defined at design time.   I’m using the UI block and not sure if this has anything to do with it.   Basically the form will open fine initially.   The user will edit some data and the when the DataGridView refreshes the error occurs.   Anyone else experience this strange behavior Thanks ...Show All

  • Software Development for Windows Vista DecCTP_5270_32bit_Main_DVD Installation Problem

    I install vista build 5270 on my Dell Dimension 5150, but it encount a problem, and the error information is: Problem Signature: Problem Event Name: WinSetupDiag01 Report signature 01:WinMain_idx03 Report signature 02:5270 Report signature 03:0 Report signature 04:1 Report signature 05:4 Report signature 06:0 Report signature 07:Ultmate Report signature 08:2600 Report signature 09:30053 Report signature 10:30035 what's the problem How can i get rid of it Thanks for help! How much space do you have in your HDD Do you have any other OS on your machine How much RAM do you have ...Show All

©2008 Software Development Network