resources

could someone recommend a good online video to learn UML ?

I've found this one: http://www.softwaretrainingtutorials.com/uml.php but that's not complete! ...

Accessing a bitmap resource fails with error code 0x716

So I don't know why I keep getting this error. Here's the relevant code: //////////////////////// In resource.h /////////////////////////// //{{NO_DEPENDENCIES}} // Microsoft Visual C++ generated include file. // Used by Freestyle.rc // #define IDB_BITMAP1 101 // Next default values for new objects // #ifdef APSTUD...

If you didn't have the internet, could you still effectively write the code you need to write?

Pre-dating the internet myself, I'm wondering how much of a reliance is placed on the Internet as a resource to find algorithms, code examples, ask questions, etc... If the internet was not available, would you have the skills, knowledge and ability to code what you needed? IOW - If you didn't have the internet, could you still write t...

ASP.NET resource expression not returning correct Culture value

Hi, I'm using the Resource expression directives in an ASP.NET page that has four global resource files, neutral, UK, US and Italian. However, using the expression syntax always returns US. Some code for the ASPX page: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="GlobalisationResources._Default"...

Is there any sites where users share custom PHP code?

Do you know of any websites that allow users to share there custom PHP functions and code snippets other then? It would be nice to compile a list of a few good resources http://www.phpclasses.org ...

Issue with GetLocalResource object

Hey SO: I am trying to access my local resources file in my code-behind. I did some googling since I was unsure of how to do it and found this: oContent.Text = HttpContext.GetLocalResourceObject("NonSupport").ToString(); However, I get an error saying that it needs at least two parameters: VirtualPath and ResourceKey. There is a thir...

Application-level Resources in a Different Assembly

This question involves the Visual Studio (2008) WPF Designer's apparent inability to handle the usage of resources located at the App.xaml level if the App.xaml is in a separate assembly from the view. To simplify the explanation of the problem I have created a test application. This application has two assemblies: View and Start. The ...

How can I get the filename of a servlet resource?

I'm writing a java servlet that calls a function in a jar. I have no control over the code in this jar. The function being called wants the filename of a configuration file as an argument. I'd like to bundle this file with my war file. If I put it in the war somewhere, what filename can I pass the function in the jar? Note that only a ...

Loading resource items in iphone via itunes

I have an app that has about 60 png files and a couple of cfg files in the main bundle. Runs great in the simulator, and when I download from Xcode to iTouch. But I'm stumped on distributing to my testers. I have their provisioning profiles, etc. But when I created the app and sent it to them, it showed up as a folder (NR1.APP) with ...

Microsoft Visual Studio: Loading resources in Qt application (without plug-in)

We don't have a Qt plug-in installed for MSVS, and it makes me wonder how/whether it is possible to load resources (images, etc) to the application. ...

Android: Is it more efficient to use a text file or an XML file to store static data

I have some reference data in a text file (~5MB) that I want to use with might android application. The file is of the format: 1|a|This is line 1a 1|b|This is line 1b 2|a|This is line 2a 2|b|This is line 2b 2|c|This is line 2c What I want to know is the most efficient way (less memory, fast, size etc.) to use this file within my appl...

Syntax error in resource file. I don't understand.

Hi all! I have a .rc file: #include "MainWindowResource.h" MAINWINDOW_MENU MENU DISCARDABLE BEGIN POPUP "&File" BEGIN MENUITEM "&New\tCtrl+N", MAINWINDOW_MENU_FILE_NEW MENUITEM "&Open\tCtrl+O", MAINWINDOW_MENU_FILE_OPEN MENUITEM "&Save\tCtrl+S", ...

How to get strongly typed local resources in a VS2008 ASP Web Site?

If I create a Web Application project in visual studio 2008 I can add a resource file for a page and using the Access Modifier drop down in the resource file editor to let visual studio generate the code so that the local resources are strongly typed. However if I create a Web Site project this combo box is disabled. Is there anyway to a...

Tool to manage i18n strings

We must manage thousands of internationalized strings for a large application. What tools do you recommend besides using Visual Studio? ...

Access resx resource files from another project

Hello, this is my first question on here so be gentle! Im using asp.net 3.5, my solution currently has 2 projects, an API class project and a website project, within the class project i have a resource file named checkin.resx. For me to be able to access the resource files from my website project, i had to set the "Access Modifier" to ...

Supplied argument is not a valid MySQL result resource???

I get this error when I use this code for people to input data. The submit form won't be listed cause it's not useful in this circumstance: function some_more_custom_content() { $output="<BR>"; ob_start(); if ($_REQUEST['code'] != "") { $code = $_REQUEST['code']; $query="INSERT INTO `fc` (`code`,`datetime`) values ('" . mysq...

How to use ASP.NET Resources in this way?

Actually, I am doing some labeling. One of my combo box with item[3sec, 5sec, 10sec, 30sec ...] I would like to add a resource key (s, sec) and use it like Text="3<%$ Resources: myResource, s%>" to get comboBoxItem 3sec, Text="5<%$ Resources: myResource, s%>" to get comboBoxItem 5sec ... But I find that the server will treat this as p...

FxCop taking issue with my use of format strings in resources with NON-Team System Visual Studio

I ran FxCop on one of the projects that I am working on and I got a whole slew of warnings that look like the following: CA1703 : Microsoft.Naming : In resource 'MyProject.Properties.Resources.resx', referenced by name 'MyString', correct the spelling of 'Myyyy' in string value 'Some format string: {0:dMMMyyyy}' As Reso...

Programmer Guide structure

Hello, I have to write a programmer guide. What is the general structure of the programmer guide? ...

Html input tag with server side resource string

I have an input button on an ASP.NET form, but I want the text displayed to come from a server side resource file. The following syntax fails, and I can't enclose it in a literal because the input tag cannot contain any other tags: <input id="btnX" type="button" disabled="disabled" value='<%$Resources:res,Button.Text%>' /> Any possi...