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

Software Development Network >> Kurt Jaegers's Q&A profile

Kurt Jaegers

Member List

LeRoi
RBowdenJr
dindelus
Doffen
ProSlamBanO
sunil_sg
R2E
Supernaut
Kartit
LeahMM
Prashweenet
mcdonaldn
TommyGL
mtower
Lovericky
R Raghu
Loke Chung Yan
raatey
SonAsylum
Rene Alexander
Only Title

Kurt Jaegers's Q&A profile

  • Software Development for Windows Vista Is there a "standard place" to store writeable not plublic shared files to please UAC?

    Our program has two files must be writeable (a database file and a config file) which are shared by all dedicated users of the program on a single system. The automatic redirection to a single users directory path is not helpfull in that case. Before changing our program: Is there a standard place on Vista to store writeable not public shared files (We whant also to pass Vista Logo test...) Thanks in advance Well then that is GREAT news. Yes, I do get myself confused because I have needs for both and I had run into that confusion over the erratically-functioning ssfCOMMONDOCUMENTS with the Shell Objects. Anyone else reading this please keep in mind that there is no such documented constant as ssfCOMMONDOCUMENTS, so t ...Show All

  • Visual Studio Express Editions Move exe to another PC.

    Hi everybody. I am new at this so I’m sorry if this thread is misplaced. I'm using VB C++ 2005 Express I got a problem moving my exe file to another computer, and I wonder if anybody else has had the same problem. When I move the file and execute it, Window come up whit an error messaged. I have installed VB Run-Time and updated .NET framework one the computer but I can’t get it to work. I hope someone can help. thread moved to the appropriate forum SJWhiteley - as the poster had suggested, they have the appropriate version of the framework installed. Since I have no idea about VC++, im sorry I can't help much, but im sure others will ...Show All

  • Smart Device Development how to build a custom user control?

    Hi All, I am trying to build a numeric keypad of my .NET CF application, the keypad is built based on user control template, the keypad will be added to another form and using this keypad it will enter numeric numbers into the form's textbox. I have problem of carrying the value from the control to the form's textbox..Please someone help me..Thanks     Using the events of the textbox is great idea but the .NET CF don't have Activecontrol property for the controls as Desktop .NET Framework has. ...Show All

  • Windows Forms Windows Application in Windows Service

    Hi, i develop my project as Windows Application at the first time. After developing for a while, i encountered Windows Service. The reason that i need the Windows Service is that, i need my program to be able to run when user log on, and not closed when log off. But in some occassion, my project need to show window form. Can i reference the Windows Application to Windows Service by Using syntax Or there are other ways around to solve my issue Thanks in advance. Yes, it is possible for 2 users to be logged in on a machine. In fact this is fundamental to the way services work. You have to ask yourself whihc user accounts the application will be in Plus, you need to keep in mind, that the context in which services run is fun ...Show All

  • Visual C++ Which One(Managed C++ or Native C++)

    Hi everybody i am starting a new project and i ma in doubt about my programming language, should i use native c++ managed c++. i should use following thing in my project: wlan communication. direct input. direct show ( previewing) direct sound (capture wave) using usb. so know please tell me which one give me more freedom to do my project. Core c++! On the other hand, your choice is dependent on software plan and time you want to spend coding. In both cases though I think Windows offers the API for media and communications both managed and core. valikac ...Show All

  • Visual Basic Login Form VB 2005

    Hi , i can’t make a loging form, checking a database users, i already have the users db, but how can i made th validation, a full step explanation it'll be great, please help me i already read a lot of books about vs2005, but i still with this trouble i'm usin Microsoft SQL server, thanks a lot!!! ok, done here and before to continue thanks for the help and patience, i'm a begginer in this, so thaks again, i have a data set, called "Usersds.xsd" with User, ID and Password rows, and a single form with two text box, one called "txtusername" and "txtpasword" and two buttons one "button1" supose to be Ok and "Button2" supose to be Cancel,  ok so when i click to ok the text in the Username and passwo ...Show All

  • SQL Server Reinstall Sql Server Express After Developer Edition

    I had to uninstall SQl Server 2005 Developer Edition because of hardware requirements, and reinstall Express Edition download version. But SQL Server Database Services fails with this message: SQL Server Setup has determined that the following account properties are not specified: 'AGTACCOUNT' . Error Code: 28006. The first time I installed Express the flow of setup ended well without any message. How to act Mike, Thanks for attention. When I installed Dev Ed, I provided no user account for Sql Server Agent. Perhaps the default was used and I don't know it. I don't know if I'm installing to the default Named Instance. I think I am, because I don't provide any Named Instan ...Show All

  • Microsoft ISV Community Center Forums Run-time error '1004' in import macro

    I have written a macro to import data from a website however i get an error below Run-time error '1004' sql syntax error and when i try to debug it it goes to .Refresh BackgroundQuery:=False Any clue regarding how I can solve this Thanks in advance Hi don76, That helped a lot. The first thing I see is a problem with the SQL statement stored in gcquery. gcquery = "SELECT asset.cusip, asset.cur_amt_outsd " & _ "FROM dmo_govcorp..asset asset WHERE asset.cusip in (" & cusip & ")" There is an additional . in the FROM clause and also there looks like a duplicate asset in there too. FROM dmo_govcorp.asset WHERE asset.cusip That might solve the ...Show All

  • Software Development for Windows Vista Error when opening xamlpad: Cannot locate resource 'xamlpadapp.baml'

    HI, I installed .net framework 3 beta2 and windows sdk on a clean system , no previous beta installed. when I try to run the xamlpad, a fatal error happens, I tried to debug then I got the detail error: ================================ An unhandled exception of type 'System.IO.IOException' occurred in PresentationFramework.dll Additional information: Cannot locate resource 'xamlpadapp.baml'. I have no idea aboout this. is there anyone can help me More on this... I have 2 coworkers who installed the .NET FX 3.0 and they both have the exact same problem. I'll have a look in other newsgroups to see if I can find more on this. ...Show All

  • Windows Forms Editing Window Styles

    I'm working on a MDI program in C# and I need to change the way that the child windows look (ie changing the look of the border, minimize button, maximize button, etc). I've looked through a few books and done some searching online, but I haven't found anything on changing the look of a window. Is this possible Thanks! Well, i think you had to use SetWindowLong API with GWL_STYLE const int GWL_STYLE = -16; const uint WS_MAXIMIZEBOX = 0x00010000; const uint WS_MINIMIZEBOX = 0x00020000; uint style = (uint)GetWindowLong(this.Handle, GWL_STYLE); style &= ~(WS_MAXIMIZEBOX | WS_MINIMIZEBOX); SetWindowLong(this.Handle, GWL_STYLE, (int)style); const uint SWP_FRAMECHANGED = 0x0020; const uint SWP_NOSIZE = 0x0001; cons ...Show All

  • SQL Server SQL Server 2005 JDBC Driver Output Parameter/Result Set issue

    I'm having an issue with the JDBC driver when I execute a stored procedure that both has a return value and also returns a result set. If I attempt to retrieve the return value (registered as an output parameter) after I execute the stored procedure, then any subsequent attempts to retrieve the result set always return null. Is this by design If I use the result set first and then later get the return value that works; however, in my situation I need to first check the return value before I work on the result set. Am I'm I doing something wrong Code: CallableStatement cs = connection.prepareCall("{ = call spGetCustomer( , ) }"); cs.registerOutputParameter(1, Types.INTEGER); cs.setString(2,"blahblahblah"); cs.setB ...Show All

  • Smart Device Development How to install Microsoft SQL Client 2.0

    I'm desperately looking for an answer. I'm developing a Pocket PC 2003 application using SQLClient 2.0. My question is how to deploy the SQLClient 2.0. I have "sql.ppc.wce4.armv4.CAB" and "sqlce20.ppc.wce4.armv4.CAB". But I don't know how to install these CAB to my Pocket PC. Can somebody help me on this Hendra MezKal, Thanks for your input. But I have resolved the problem by creating a simple Windows Installer that install the SQL Client 2.0. Hendra ...Show All

  • Visual Studio 2008 (Pre-release) MS WS platform offering: Which one?

    Greetings, Just want to get the pulse of the community about what would drive your choice between the different Web Services solutions available today from MS. I still find this thing a tough choice on every project i am working on. We now have the following: WCF "Pure" ASMX P&P Web Services Factory (which produces ASMX for now) VSTS System designer (ASMX) The key point is about finding the balance between the need for automation/code generation/modeling (ASMX offering) versus power, flexibility and extensibility (WCF) I have to architect an Enterprise solution today based on SOA. I will get very detailed analysis model from the analysts. (They would like us to be able to generate code from that ...Show All

  • Audio and Video Development Persistent Storage - 64 or 128?

    I believed that 128 was the minimum amount of storage per the spec. However I just came across a document by Sonic (dated August 06) that claims 64 is the minimum. Which is correct ...Show All

  • Visual C# random number problem

    1:892 2:951 3:363 4:418 5:301 6:208 7:400 8:522 9:321 10:293 11:212 12:712 13:195 14:570 15:485 16:409 17:414 18:928 19: ================================================================ here are 18 groups of data ,and they are selected at random from 000 to 999 based on these numbers ,can you figure out the inner relationship among these datas,and try to predict the 19th group of data 1:892 2:951 3:363 4:418 5:301 6:208 7:400 8:522 9:321 10:293 11:212 12:712 13:195 14:570 15:485 16:409 17:414 18:928 19:024 20:665 21: ================================================== ============== ShellShock: micvos Have what arithmetic ,try to predict the 21th group of data ...Show All

©2008 Software Development Network