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

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

KompjoeFriek

Member List

Carlos Mendonça
Gwyn Williams
Chelion
EYZAE
PedroCGD
Kripz
Ultrawhack
mido19
riemerg
Drake1500
netpicker9
Toseef
Wilk06
.net sukbir
Paul Stovell
ddCONFUSED
eldiener
Ultrawhack
Hil H
Expressman
Only Title

KompjoeFriek's Q&A profile

  • Software Development for Windows Vista The requested operation requires elevation.

    I am connected to wireless network in my city. The problem is that when I want to connect to city wireless I need to add a route in Command prompt. In XP it works fine, but when I type this in Vista: route -p add 10.0.0.0 mask 255.0.0.0 10.46.2.1 I recive this message: The requested operation requires elevation. I realy need to do that, otherwise I can't access any page on wireless except 10.46.2.*. I am also having this problem. Although the persistant routes I've put in place are not showing on *route print*... are they actually there Will they dissapear on a restart Richard. ...Show All

  • Visual Studio 2008 (Pre-release) IIS Hosted Service uses Machine Name as Base Address

    Ok, this makes no sense. I am trying to host a WCF service on IIS. From what I have read, you can't specify a base address for IIS hosted WCF services because they are automatically generated. So I can publish the service to our web server and access internally (by using Add Web Reference). However, when a client outside of our building tries to connect using Add Web Reference (they are on 1.1 and cannot use Add Service Reference) an error is generated in the add web reference wizard and the box to type in the service name is grayed out. The error says something about not being able to access the base address, which is where I have problem. Since I cannot specify a base address, it is using the machine name by default. So if i have a servi ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Arcade size limit and XNA

    Just a quick question. kinda new to this whole thing, but i was wondering if the size limits for arcade games (50 meg or something) will be enforced for XNA built games, or will there be an alternate size limit, or no size limit. not that i think me or anyone else will be writing a game that big too soon, but it would be good to know   Residual Logic Games wrote: What does it take to develop fro XBLA It is somthing I might be interested in pursuing in the future. An Xbox 360 A Live account A PC running Windows A free version of Visual C# .net Express A free copy of XNA Game Studio Express A 49-99.00 subscription to the Creators Club over Live The knowledge of C#, XNA, game development, 2D an ...Show All

  • Visual Basic Outlook upgraded; What about program?

    I am using vs.net 2003 to develop a program. We use Outlook 2000 for email on our computers. Some of our computers have recently upgraded to Outlook 2003. The new computers with Outlook 2003 cannot send emails through our program that we are developing. What are my options for upgrading this program to interact with Outlook 2000 and 2003 The code we use to send the emails is this: Dim olApp As Outlook.Application Dim olMailMessage As Outlook.MailItem olApp = New Outlook.Application olMailMessage = olApp.CreateItem(Outlook.OlItemType.olMailItem) olMailMessage.Subject = "Some subject here." olMailMessage.Body = "Some text here." olMailMessage.To = someone@somewhere.com olMailMessage ...Show All

  • Visual Studio Team System Error running multiple coded webtests in the same load test

    Hi guys, hope you can provide some guidance! We're just getting started with the toolset and are running into some issues. I have 2 coded webtests that were generated from recorded tests. Each test runs fine when run independently, even when run under a load test. However, when I add both tests to the same load test (assume 50% distribution of users on each), the second test that has been added fails to run and throws a RequestEnumeratorException. The LastMessage value is "Exception occurred: The given key was not present in the dictionary" The stack trace is: at Microsoft.VisualStudio.TestTools.WebTesting.ThreadedWebTest.<GetRequestEnumerator>d__0.MoveNext() at Microsoft.VisualStudio.TestTools.WebStress.W ...Show All

  • .NET Development FTP in non blocking fashion

    Dear friends, I want to add FTP functionality in my application in Non-Blocking fashion. I want to add this functionality in Non-Blocking fashion because i want the user to cancel the FTP operation any time. In .NET 2.0 there is a class FTPWebRequest with the help of which we can support FTP functionality in our applications. There is an example in MSDN which shows that how FTP operation can be performed in non-blocking fashion using FTPWebRequest. The part of example can be found here . (Please scroll down the page). For uploading file we write all the data to the request stream and then closes the stream using statement: requestStream.Close() Now my problem is that the statement requestStream.Close() blocks for a very long ...Show All

  • SQL Server calling multiple stored procedures from a stored procedure

    Hi. I'm quite sure that it's just my search methods that suck, but I can't find any good examples of how to call multiple stored procedures from a stored procedure. The thing is that I have a whole bunch of tables, each with auto generated stored procedures for get by id, get all, insert, delete, update... Since I want avoid multiple calls to the database to fill my business objects I thought I'd make a sp that gathers data from multiple tables, using the standard get sp's... the structure looks like this base  ( baseID , baseCol1, baseCol2) base_elementContainer  ( base_elementContainerID , baseID, elementContainerID) elementContainer  ( elementContainerID , elementContainerCol1, elementContainerCol2) elementCon ...Show All

  • SQL Server How do I retrieve a record by primary key?

    Visual Basic 2005 Express: I want to retrieve an SQL DataBase table record whose primary key is 4. How do I read in that record and how do I pick up data from it isnt' this a Visual Basic quesion THe query would be "select <column list> from <table> where <primary key> = 4". You need to fill in the bracketed variables with proper values. I'm sure VB has some built in datareaders of some sort. ...Show All

  • SQL Server Working with two data sources and dependencies parameters

    Hello. This is a real hard nut to crack :) I'm trying to do the following: I have one dataSource name "dSource1" and second named "dSource2". I have a report with one dataSet base on dSource1 and one dataSet base on dSource2. Now, I want that the second dataSet will return a list of numbers and for the first dataSet to use those number in a query. (example: second dataSet is "select num from t1" and the first dataSet is "select * from t2 where nums in (@allNums)". and of course that @allNums should be the values returned from the second dataSet. Whan I tried to set the @allNums parameter to get his default values from the query of the second dataSet I got the error that say "forward dependencies ...Show All

  • Visual Studio How do I add a custom reference to the Visual Studio macros?

    How do I add a custom reference to the Visual Studio macros When I right click on "References" and click "Add References...", it only shows an already populated list of .NET references. It does not let me browse for an assembly that I have created. Let me irriterate that I am refering to the Visual Studio Marco IDE (the one that pops up when you edit a macro, which is different). I can add references without problems to non-macro projects. Thanks, I'll try that. Why is it that I have to copy my assembly to there Will VS crash if the assembly referenced is not present ...Show All

  • Windows Forms why invoke IComponentChangeService.OnComponentChanging method did not work?

    hi all. i now create a custom designer for my custom component Type. and the designer implement IRootDesigner , IToolboxUser.. when i modify the component properties then invoke IComponentChangeService.OnComponentChanging method ,but it did not work why? please help me... thanks. my code like below... MyComponentBase _com = this.Component as MyComponentBase; _com.Names.Add(new Class1(tool.DisplayName)); IComponentChangeService _icc = (IComponentChangeService) this.m_component.Site.GetService(typeof(IComponentChangeService)); _icc.OnComponentChanging(this.m_component, TypeDescriptor.GetProperties(this.m_component)["Names"]); MSDN emphasizes that " This even ...Show All

  • Visual C# Only support "DateTime.Now.ToLongDateString()" in file name?

    using (StreamWriter sw = new StreamWriter((@"C:\" + DateTime.Now.ToLongDateString() + ".txt"),true)) I tried to use "DateTime.Now.ToShortDateString" and "DateTime.Now.ToString()" and "DateTime.Now.ToLongTimeString()"....however, the program will encounter problems when running... It seems the format for file name only accept "DateTime.Now.ToLongDateString()", is there any way to add the current time in the file name Or maybe I can use the log file to record the applications However, I know nothing about the log file... you can try this:   DateTime.Now.ToString( formattinghere ); example: DateTime.Now.ToString(ddMMyyyyHHmmss);   ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA Beta 2 Question - Content.Load related

    OK, I am hearing about this new content.load method that you can use instead of using the classic Texture2D.FromFile("..."), however, this may sound kinda nooby, but how do I access the content after it has been loaded I guess I do not really understand because I am not that advanced with XNA yet, and I would like a little rundown. Thanks in advance. Oh, so if I passed the loader to the set texture method and then did mTexture = loader.Load<Texture2D>("Graphics\\playerTrevor") for instance, it would not reload it, it would use it if it's already loaded That's great news indeed. ...Show All

  • .NET Development Problem in Using the "FtpWebRequest" in VS 2002

    Dear all, I need to write a program that need to upload some files to a ftp When I search in MSDN, i find this articals http://msdn2.microsoft.com/en-us/library/ms229715.aspx#codeexamplesection when I copy the code and apply in my program, it has the error message that cannot find the namespace of the FtpWebRequest I have updated the .NetFramework to 2.0 I have no idea to solve this probelm. it would be great if someone can help me to solve it. or povide another method to upload a file to ftp. Thank you   Michael K. Barnett wrote: Vs 2002 I have an example using Studio 2005. I sent you the example in an email attachment...for 2002  I also sent you an ...Show All

  • Windows Forms How to create Directory open dialogue like a File opne dialogue?

    Hi, I would like have a browse button, onclick there should appear a dialogue to select directories (just like to File open dialogue where we can select multiple files) with multiselect option. I checked the available controls in .net framework 2.0 but could not find some relevent option. I was wondering how to achive that functionality Thanks, Munawar You'd normally use the FolderBrowseDialog for this. However, a fundamental problem you'll have here is that the TreeView control doesn't allow selecting multiple items. Just about the only alternative I can think of is to allow the user to fill a ListBox with folders using a plain FolderBrowseDialog or a custom TreeView. Search www.codeproject.com with " ...Show All

©2008 Software Development Network