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

Software Development Network >> Damien fromOZ's Q&A profile

Damien fromOZ

Member List

MauricioUY
Brandon Bohling
INTPnerd
freadomfee
CodeScribler
KJO43
LAPM
aus82
petedashwood
stak32
maddinthegreat
KrishnaUNISYS
migz148
thukralz
jewelfire
AlexDav
Rob Ski
jeffg90
Jassim Rahma
Filip S
Only Title

Damien fromOZ's Q&A profile

  • Software Development for Windows Vista set up analysis tool in ACT

    hi, does the set up analysis tool work in vista it is working properly in windows server 2003 plz resolve my issue.... regards, divya No, it doen't work in vista. Only xp and 2003, the reason is that it checks for the setup working on Vista. If it fails right away on Vista then it had nothing as a basline to compare to and figure out what went wrong. ...Show All

  • .NET Development Accessing XML file from a folder

    hi i am developing a c# window application which is using xml for storing Data. i have added a folder called Data to the project which contains these files. I am unable to get the equivalent of "app.path" that we used in VB6.0 to get the exact path of the application. To access these folders i am using ds.readXml("..\\..\\Data\\user.xml"); this code is working fine in both debug and release mode but when i am deploying my application it is not finding the data folder. Please suggest. with Thanx Daman In .NET 2.0 the equivalent of App.Path is My.Application.Info.DirectoryPath . For .NET 1.1 use Application.StartupPath as Kareem suggested. ...Show All

  • .NET Development save the source code of a particular URl

    Hi, How can i save the source code of a particular URl in a single button click It shud be saved in a specfic location of my drive. The thing is if we do Alt+VC[shortcut key]we will get the souce code of that URL in a notepad.Now this note pad shud be saved........ How can this be done dynamically I am struck in this.....Please help me out... with regards, Karthik Here: HttpWebRequest webReq = ( HttpWebRequest ) WebRequest .Create( "http://www.microsoft.com" ); HttpWebResponse webResp = ( HttpWebResponse )webReq.GetResponse(); Stream ms = webResp.GetResponseStream(); StreamReader sr = new StreamReader (ms); Console .Write(sr.ReadToEnd()); webResp.Close(); ...Show All

  • Visual Studio 2008 (Pre-release) Feedback please: WPF for LOB applications (Data entry/Data Viz/etc...)

    Feedback please: WPF for LOB applications (Data entry/Data Viz/etc...) Are you using or considering WPF for Line-of-Business applications What has you excited about WPF for LOB We are missing some things that would help LOB scenarios...are you waiting or doing without What is your advice for the Microsoft here What would you prioritize Please comment in the forum and/or on my original blog post ... Thanks, Rob My point is that in the vast majority of cases the same person is going to design/code the UI as write the code behind. And you can't suggest that just because a particular model has been around for years it's right to apply it to other areas. The experienced devel ...Show All

  • Visual Basic Data set and query

    I need to create a query that is determine by what a user clicks on in a listbox that is generated by a dataset and then use that information to create a sql query against an oracle database. I have my dataset setup and it displays in my listbox but how do i read the other column in my dataset that corresponds to what they click on in the listbox Cptkirkh, Here is a good news that it is possible for you to show multi column in one ListBox control. I searched the codeproject and found an example on the Multi Column ListBox. However, it is written in C#. http://www.codeproject.com/cs/combobox/multicolumnlistbox.asp You can also download the code sample from the website. Hope that can help you! ...Show All

  • Visual Studio Express Editions Allocate Mail Quota

    please help me Mail quota allocate which support IMAP4/SSL Webmail protocols. example : yahoo create a new user mail memory allocate 1Gb memory space. same thing how to mail quota memory allocate. please any post code. or Send mail Id viswa.vp@gmail.com please its very urgent. thanks ...Show All

  • SQL Server Fields selection criteria made by user

    Hi, I am new in implementing reports with reporting services but i hope someone here will be able to help out of that problem. I already have a report (DataSet: select * from table1 ) on a server that users may render directly from a program written in VB.NET but I need to give them the possibility to put a condition on a column to filter the dataset result, like a WHERE CLAUSE. I don't know in advance the selected column name, so I suppose that I have to modify the SQL text command to incluse the text condition("Where code = '008' " as an example) before processing the report. How can I do that in code Thanks a lot. One way you could do it, not saying it's the best performance t ...Show All

  • Windows Forms MAGE Removes TypeLib Information from Application Manifest

    Both Mage and MageUI remove typelib information from deployment manifests upon updates and signing. To set the scene, I am trying to deploy an application with ClickOnce (manually creating/altering) application and deployment manifests. The main application is using RegFree COM and the application manifest contains the relevant typelib information. I need to be able to update and resign the application manifest with Mage and MageUI but have discovered that updating and signing with either removes the typelib information from the application manifest file, hence I can't use RegFree COM in my application. Is this a known issue are there any workarounds Many Thanks Raj Sharma I'm getting the same proble ...Show All

  • .NET Development Async Calls using ASP.NET 2.0 Client Callback won't work properly if the OnComplete function makes another Client Callback

    Ref: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=270828&SiteID=1 If you make an asynchronous callback using ASP.NET 2.0 client callback and the OnComplete function you defined makes another callback then you will exeperience unwanted behavior. Here is how it gets started... [code lang="javascript"] Code Snippet function StartFirstCallback() { // execute first callback. you get this script from Page.ClientScript.GetCallbackEventReference WebForm_DoCallback('__Page', "", OnFirstCallbackComplete, null, null, true); } function OntFirstCallbackComplete(result, context) { alert("First Callback Complete"); // execute second callback. you get this script from Page.C ...Show All

  • SQL Server Add sum column to query

    What's the best way to include an amount sum in a query if I also need the individual amounts For example, I need the following columns: order number order amount total amount I tried using "with cube ", but the total number of columns in the query exceeds the allowable limit of 10. sorry, i made a mistake... SELECT a.ordernum, a.orderamt, b.totalamt FROM orders a inner join (select sum(orderamt) from orders) b on a.ordernum= b.ordernum I thought inner join could be more efficient than using where statement... ...Show All

  • Software Development for Windows Vista Slow startup times

    Hello, I have just installed WWF on my development system. I have noticed that the start/load time for an extremely simply workflow (ie-hello world) is slow. This isn't just the runtime of the application either.. Here is some pseudocode, main print 'in main' workflow.setup print 'wf setup' workflow.start workflow.waitforexit print 'done workflow' The application sits there for about 10 seconds before even entering main. For all intensive purposes please assume that my development machine has never been connected to the internet. Anybody have ideas why this could be happening 1°do have the same problem when you run your application outside VStudio 2°do you have some VStudio addins activated if yes, ...Show All

  • Visual Studio Express Editions Printing my project

    Hi there; I have done quite some programming recently in VBA for Excel, and now I am toying with VBA Express 2005. And I have a question. A silly one..... In VBA for Ecel, when I want to print all my code and forms, I just go to the print dialog, and then I am presented with the option to print both code and forms. Or just code, or just forms. Howver, in VBA espress 2005, with a form selected, the print/page setup option in the File has been grayed out. I seem to be able to only print selected modules (=text), not forms. Am I missing something Thymen The IDE doesn't support it. You are not the first to request this feature. Check out this Product Feedback entry and add your vote. ...Show All

  • Microsoft ISV Community Center Forums LCS complience with IMS / SIP standards ?

    1. It seems, to register to Live Communication server from a SIP client, NTLS or Kerbaros authentication is a must. How to register from a SIP client which doesn't support NTLS or Kerbaros Is there any configuration required on LCS to acheive the same 2. If LCS doesn't support HTTP Digest Authentication then its not interoperable with SIP standard rfc 3261 and IMS Please correct me if I am wrong Please revert back !!! Best Regards, Deepak K Bramhapuriya I'll take a look but I doubt that thay give me the NTLM authentication of SIP... Is not simple the NTLM authentication... Is the SIP NTLM authentication... But I'll try... Thanks ...Show All

  • Windows Search Technologies Remember Password option

    When logging on to a server from client machine of LAN I used to give login name and password after enabling remember password option I am not prompted of the log name and password. The moment the system is started it is automatically loged on to server. the problem is If I wish to logon with different user name how can I do we are having windows server 2003 on server. any help Hi Shobha, To logon to other user area use log off option. and search for caching option to cach only user name not password.(In user settings, you can do only if you are admin) Hope this helps. Regards ...Show All

  • Windows Forms how do I add file upload limit into front page

    hello, I just did the "how to use a upload form on a web server" I'm using front page 2003 and its works just fine but I need to add a limit to the file being uploaded the size of the file being uploaded I need to restrict it also how to I restrict the extensions of the files being up loaded example: I want to restrict the file size for the user being uploaded to 100 meg and I want to only use .jpg and .gif files! and still use front page is this possible Newbie question... thanks, Steve You say the upload works fine, so I need to know how to do it. I've been advised not to use FTP with front page. I need a basic answer. Not even sure how to get the word document into front page. ...Show All

©2008 Software Development Network