Tagged Questions
0
votes
0answers
2 views
How to negate PO BOX - Regex
I've tried a few things, haven't been able to get it to work. I need to exclude PO Boxes. I thought I just had to wrap it with ?!..but it is not working. Any thoughts?
...
0
votes
0answers
19 views
ASP.Net best practices for dynamic content
I have a pretty extensive Classic ASP background (using server-side javascript), and my company is finally (FINALLY) making the push towards recoding everything in ASP.Net (using C#). I have a good ...
0
votes
1answer
8 views
How to display a number in German culture?
How to display the Number 89345.00 as 89.345,00 using string format in German culture?
Thanks.
2
votes
1answer
30 views
Tetris Timer is not working
I am trying to write Tetris in c#. The speed of the first block is normal, but the second block falling two times quicker than the first one, then the third block is three times quicker. I think there ...
0
votes
0answers
9 views
My method did not add my file into my list although no error
This is my class that after each file choose add the file to my list and from the main form raise event that update my ListBox and add the file into my ListBox.
when i am choosing 2 files i can see ...
0
votes
0answers
7 views
Secure Property access with role
I have the following class:
public class Config
{
public bool Value1 {get;set;}
public bool Value2 {get;set;}
// ...
public bool Value8 {get;set;}
}
Then I have different Roles. How ...
0
votes
1answer
4 views
Collection to use with Entity Framework when seraching for single result
I followed an Entity Framework tutorial and wrote an ApplicationConfig model (this is simplified) -
public class ApplicationConfig
{
public ApplicationConfig()
{
this.Users = new ...
0
votes
0answers
3 views
EntitySpaces .Take (Limiting query results)
I'm having an issue using .Take on entity spaces queries. The exception I'm receiving is "Invalid usage of the option NEXT in the FETCH statement". Has anyone had experience with limiting the results ...
1
vote
1answer
30 views
PHP Daily bonus
I need to code daily bonus system.
User must be able to recieve bonus once a day.
I coded something like that:
function checkDailyBonus($user, $type) {
global $ado;
$last_day = ...
0
votes
1answer
7 views
Visual C#: Add ribbon button to start tab? (Outlook add in)
I´m using the ribbon designer in visual studio 2012 for a outlook add-in.
I need to add several ribbon buttons to different existing tabs in the Outlook ribbon.
Right know my button shows up in ...
0
votes
1answer
19 views
How to emulate Task.Wait using threads
I would like to emulate this code:
Task t = Task.Factory.StartNew(...)
t.Wait()
According to this question Tasks cannot set apartment state. Apartment state can be set using Threads but I need the ...
0
votes
0answers
8 views
Performance of WPF Toolkit Line Chart
I have just created a simple chart using WPF Toolkit that binds to a List<KeyValuePair<int, float>>. There are around 16,000 points in the list. It takes the charting control incredibly ...
0
votes
0answers
12 views
Need guidance with gridview, data repeater and session state
I am not new to .NET, but I am still fuzzy on the .config files. I have been trying to learn as much about session state as possible but cannot avoid a continual problem.
I had a simple gridview ...
-1
votes
0answers
8 views
report viewer asp.net c# objectdatasource trouble
hello i'm a little concerned 'cause i have to make an aplication using the reporting services of asp.net on visual studio 2010, but i don't understand too much about it, i know that i have to create a ...
-2
votes
2answers
26 views
How can i insert each line from txt file into seperate rows in MS SQL Database?
I have a text file which has words from dictionary like..
ABACA
ABACHI
ABACHISTA
ABACO
ABADESSA
ABADIA
ABALIETA
ABARICA
Now what i want to do is insert this list from text file into sql ...
0
votes
0answers
9 views
Editing binary Registry key
i'm trying to programmatically configure some options in Internet Explorer like :
Allowing ActiveX Filtering
Allowing Scripting
etc..
They are all stored in the registry so I can easily edit them ...
-1
votes
1answer
36 views
How to retrieve data from a datatable in horizontal order?
I have a table in sql server database as shown below,
id | Labels
----------------
1 MyHeaderLabel
2 MyFooterLabel
3 ...
2
votes
1answer
66 views
Is a boxed value just a pointer to a copy of the value stored in the managed heap? [closed]
In my mind this is what I think of as boxing and unboxing. Nothing more. Can someone confirm that this is correct?
0
votes
1answer
31 views
Get Data between Vertical Bars
I'm trying to extract the following data.
|SERVER-1|Running|SERVER-2|Running|SERVER-3|Running|
I would like to get the data between the vertical bars like this
SERVER-1
Running
SERVER-2
Running
...
0
votes
2answers
29 views
Insert SQL data into row with same id?
Is there a SQL command for inserting data into a row where the id = the table id, and if it doesnt exists then insert into a new row?
Something like:
('INSERT INTO USERS IF EXISTS WHERE ...
3
votes
3answers
25 views
C# Overload return type - recommended approach
I have a situation where I just want the return type to be different for a method overload, but you can't do this in C#.
What's the best way to handle this? Is the fact that I need this mean my ...
0
votes
0answers
8 views
Cache viewer for Google Chrome
I want to make a simple cache viewer for Google Chrome with C#, I didn't find any sample about how to access Chrome cache
I found that the cache existing on ...
1
vote
2answers
22 views
What kind of indexes will help me in this MERGE query?
I have a table like this:
Name | TimeA | TimeB | ValueA | ValueB
And, I am performing some MERGE operations as follows:
CREATE TABLE #TEMP1...
INSERT INTO #TEMP1
SELECT Name, Value
FROM ...
0
votes
1answer
17 views
Writing to an existing Excel File using c#
I am trying to open (or create a new xls) Excel file and write some values to it. Although, the program below works just fine if I simply create a new xls file, I encounter the some problem in line
...
0
votes
0answers
4 views
NancyFx binding a model to a dynamic type?
In Nancy, is there a way to bind the content of a POST request to a dynamic type?
For example:.
// sample POST data: { "Name": "TestName", "Value": "TestValue" }
// model class
public class MyClass ...
0
votes
1answer
14 views
SQL Server: Splitting string by '/' and put each split element into a different column
I have a table on an external site that I need to copy to a local DB, but with some transformations. One of the columns I have to heavily modify is called product_url. The URL is in the form ...
0
votes
1answer
9 views
cannot load DLL after VS installer deployment
The C# application that I'm trying to deploy has two critical references, A.dll and B.dll.
First, I used InstallShield LE which includes everything (.dll's and .pdb's) in release folder into ...
0
votes
0answers
18 views
How to get the html code modified client side that was generated from the server side?
I created a list with jquery sortable + C#, that the user (client) can order:
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
HtmlGenericControl ul = new ...
0
votes
1answer
11 views
Algorithm to update average transfer rate on-the-go with C#
I have a lengthy method that writes data into a database. It is called repeatedly. I also maintain the counter of records written so far, as well as the total number of records that need to be written ...
0
votes
1answer
17 views
When can two .NET processes share DLL memory?
I have two ASP.NET websites that reference the same class llibrary. Currently we publish the site with two copies of the class library. Does this waste memory? Does the OS know the two copies of ...
0
votes
1answer
15 views
WPF Getter/Setter Not Being Called
I have the following code. The PropertyChanged event is being called but the getter and setter is not. I can't for the life of me see why not. I have other properties where the same thing is happening ...
0
votes
1answer
16 views
Creating .csv file from an Access table using C#
I am trying to write a program which creates a .csv file from an Access table. I'm not sure how to do this and everything I've found while researching this is how to do the opposite, creating an ...
1
vote
1answer
25 views
Stack trace references location that does not exist
I have a stack trace logged on a dev server. In the stack trace it makes a reference to a file location on my local computer and not the file location on the dev server.
Has anyone seen this before? ...
0
votes
1answer
22 views
Convert Image into ByteArray
I know there already are plenty of post about this, but every solution I have tried so far failed. What I want is to get a Byte[] from an Image object.
What I have tried so far:
using (MemoryStream ...
0
votes
0answers
5 views
Unity3D: Network.Instantiated objects appearing on server but not client
So to simplify the scenario let's just say I have two scenes in my Unity project: the menu where connection happens and the level to walk around in. The server user (SU) will setup a game and load the ...
1
vote
0answers
19 views
Generics with contravariant type parameters and Unity container
I have an interface with contravariant type parameter, say IFoo:
interface IFoo<in T> {}
Now I have three classes:
class B {}
class D : B {}
class Foo : IFoo<B> {}
If I register ...
0
votes
0answers
38 views
Previous row value being written
I am trying to only add values from rows where a checkbox named "Addbox" is true, the below code identifies when a checkbox is ticked and only adds those items to the users wishlist. However it adds ...
0
votes
0answers
12 views
update raw in gridview not work
I am using gridview to represent data in asp.net but when I clicks on update link nothing happens.I am trying to solve this problem in different ways, but no luck.
<%@ Page Title="" ...
0
votes
0answers
9 views
How do i implement audiomanager.STREAM_MUSIC in c# for an Android app
I am just pulling my hair out. I am not very versed in java so I am using c# to create a streaming radio app for a friend of mine for Android. I have been following the code on some of the other ...
0
votes
2answers
22 views
BackgroundWorker with Webclient downloadstring
So basically I want to retrieve the content of a .txt file on the internet and write it into a a label. However though, while it does this Windows Forms freezes.
So I thought of putting it into a ...
0
votes
0answers
8 views
How to hide grid lines in VS2010 XAML preview?
Visual Studio 2010 shows some faint grid lines over the control rendering in the XAML Designer view. How do I make them go away?
0
votes
0answers
18 views
command line subset sum
Im making a program that takes a traget value and a set list of values, i need to pick numbers from the list that will add up to the target list.
This all has to be done on the command line.
Im ...
0
votes
0answers
8 views
iPhone Programming — Table Populated with Type Object
I am trying to create a table that is filled is textfields and labels, but am having a tricky time populating it. Errors are being thrown as if the table will only accept strings into its cells.
My ...
1
vote
2answers
25 views
RegEx to replace @ unless it is preceded by /
I need a regular expression that will be used to replace @ with /@, unless the the @ is preceded by <. I have been fiddling with RegExHero to try to accomplish this, but it is not quite right. It ...
0
votes
0answers
21 views
finding two or more consecutive words starts with upper and replacing with their abbreviation (regex)
i want to replace two or more consecutive words that starts with an upper character and replace them with their abbreviation, i managed to find the words with
def find(name):
return ...
0
votes
0answers
26 views
Creating a function to check if two items exists in the table together
I am currently working on this code to check the status of an employee and I want to create a new login function:
create or replace FUNCTION get_status_by_employee_id
(
p_employee_id NUMBER
...
0
votes
0answers
8 views
Adding buttons to a DataGrid in WPF
I have this DataGrid:
<DataGrid x:Name="dgTimeline" GridLinesVisibility="Horizontal" AutoGenerateColumns="False" CanUserAddRows="False" CanUserResizeColumns="false"
IsReadOnly="True" ...
0
votes
0answers
21 views
Can't Acess Socket
try
{
if (!bContinueCapturing)
{
//Start capturing the packets...
btnStart.Text = "&Stop";
bContinueCapturing = true;
//For sniffing the socket ...
0
votes
0answers
6 views
Programmatically connect/sync to WMDC via bluetooth with WM6.5 device
I've been looking around for a way to create this connection automatically and I haven't been able to find anything. I've looked at the 32feet library as well as some others, and while I can use them ...
3
votes
3answers
30 views
Oracle Join SQL Quest
I have 3 tables as per below:
CREATE TABLE USER_STATUS ("UID" varchar2(7), "STAT_ID" varchar2(11)) ;
INSERT ALL
INTO USER_STATUS ("UID", "STAT_ID") VALUES ('UID_001', 'STAT_ID_001')
INTO ...
