| No Touch Deployment Error Question |
|
 |
Index ‹ DotNet ‹ Winforms
|
- Previous
- 1
- Winforms >> Click Event HandlerI have a C# .net 2003 program that has a processing loop in a click event
handler for one of the form's controls. The loop has a DoEvents
and a Thread.Sleep for each iteration to simulate a lengthy process. I want
to be able to have the user click a cancel button to set a flag to stop the
looping but I have found that the first click on another control while in
the click event of the first control is not caught by the program. Sometimes
takes many clicks to work at all. Does anyone know what is happening here ?
- 2
- Visual C#.Net >> string arrayHow to get a list of names from database into string array?
variable name should be string array...
This is the code I use...
public string GetFunctionName(Guid UserID)
{
sSelect = "";
string name="";
if (db!=null)
{
if (nGroupID.Length !=0)
{
for ( int iIndex = 0; iIndex < nGroupID.Length; iIndex++ )
{
if ( iIndex != 0 )
sSelect += " OR ";
sSelect += "GroupID ='" + nGroupID[ iIndex ].ToString () + "'";
}
DataRow[] FGrows = db.dataSetUsers.FunctionsGroups.Select(sSelect);
foreach (DataSetUsers.FunctionsGroupsRow row in FGrows)
{
DataSetUsers.FunctionsRow function =
db.dataSetUsers.Functions.FindByFunctionID( row.FunctionID );
name = function.Name ;
}
}
}
return name;
}
- 3
- Visual C#.Net >> linking to enumeration members in xml commentsi often see in MSDN and third party component providers link to enum
members in their docs. but if i try to do something like <see
cref="MyEnum.Member1"/> i always get an error from the compiler, that
the member doesn't exist or something. how can i link to members of an
enumeration, like i link to methods in other classes?
- 4
- Visual C#.Net >> Conservar estado control personalizadoHola a todos:
Estoy intentando hacer un control y necesito mantener el
estado de la siguiente colección que he creado:
public struct ColumnaGrid
{
public string TituloCabecera;
public int LongitudCabecera;
.........
}
[Serializable()]
public class ColeccionColumnasGrid:System.Collections.CollectionBase
{
public ColumnaGrid Item(int indice)
{
return (ColumnaGrid) List[indice];
}
public void Add(ColumnaGrid objColumnaGrid)
{
List.Add(objColumnaGrid);
}
.......}
La estoy intentando guardar en el viewstate pero no hay
forma, uso lo siguiente.
public ColeccionColumnasGrid ColumnasGrid
{
get
{
ColeccionColumnasGrid columnasGrid;
columnasGrid=(ColeccionColumnasGrid) ViewState ["columnasGrid"];
return columnasGrid;
}
set
{
ViewState["columnasGrid"]=value;
}
}
He leido algo de que hay que serializarla pero no se como
hacerlo.
A ver si alguien me puede echar una manita.
Muchas gracias.
.
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
- 5
- Microsoft Project >> Re: MS Project 2002"Michael" <michaeld@austin.rr.com> wrote in message news:...
>I just bought a new WinXP machine and I am trying to install my MS Project
>2002 software from the legal and purchased CD I have. It is asking me for
>the drive where a qualifying product is, because it cannot find it on C. I
>tried puting older CDs I have from MS on the CD drive, but nothing worked.
>By researching on the web, it appears that it may be an upgrade version
>but it does not state so on the CD (it looks like it is a full version).
>
> Could this be a bug associated with WinXP SP2 or other item that does not
> let me install? Any suggestions are appreciated.
>
> Thank you,
> Michael
>
- 6
- Visual C#.Net >> [OT] NUnit QuestionI have a solution containing two projects. Each is a class library. One
is an actual library, while the other merely contains unit tests.
The unit testing project references the library project. It all compiles
fine.
But when I run NUnit specifying the unit testing project DLL as input, all
the tests fail with an error message reading that my library (which the
unit test project references) could not be found.
How do I work around this?
- 7
- Winforms >> Problem with forms not properly disposedTo be able to explain what's happening, I will use a short example:
The example is created in VB.Net 1.1.
I have a form with a combobox on it. The datasource is set to a global
datatable object which is instanciated on a vb module.
I instanciate the form, set the datasource, valuemember and displaymember on
the combobox. Then i dispose the form. After the form is disposed and I do
any changes to the global datatable (e.g. clear all rows), the
SelectedIndexChanged event on the combobox is still triggered.
How is that possible?
Any help would be appreciated.
Regards, Rolf F.
- 8
- Dotnet >> Career AdvicesWhich one should I learn ?
DirectX with C++ (becoming a graphics/games programmer)
or
.Net with C# (becoming a business programmer)
Which one is safer ? or wiser from a career standpoint ? (security, salary,
job finding, benefits, pension etc....)
I don't know which one I should learn ... It seem like I can't make up my
mind which one I prefer the most ....
Thanks a lot
nb: I am a hardcore gamer who always wanted to do games ... should I go
with what I love ? everytime I took something new to learn, am always
thinking about how I can do games with it ... it's weird
- 9
- Microsoft Project >> Microsoft Works 7.0Whenever I click on the "close" button under File, my version of Microsoft
Works 7.0 application closes.
Is there a way, when I click on "close" that the application itself
would remain open ? Especially when I just want to "end" the letter I
was working on, and
start something else (another letter, a cover sheet for fax, etc.....).
Right now, the application closes and I end up on my DeskTop.
Gary@garyst@bellsouth.net
- 10
- Dotnet >> How do I interface Exchange 5.5 with VB.NETI've searched and searched, but I can't seem to find any documentation on how
to hit Exchange 5.5 with VB.NET. I need to simply log into Exchange and
read the appoinments of the user currently logged into the workstation.
- 11
- Winforms >> Access to the internal property grid combo box controlAbybody knows how the PropertyGrid manage the ComboBox control?
I know to use the TypeConverter so the ComboBox are used if the user clicked
in the property. But I want the access to window control so I can use the
void WndProc(ref Message m) method of the ComboBox.
Thanks
Thomas
- 12
- ADO >> Serialized Typed DataSet VersioningHello all,
I'm working on a smart client application for my company. The client
uses .NET 2.0 typed datasets to store it's data. It works both in
'online' and 'offline' mode. When the application starts in online
mode it gets a new dataset diffgram from a web service. When it shuts
down in online mode it sends the changes made to the dataset to the
server and gets a new dataset. In offline mode it, when shutdown,
persists the typed dataset to disk as encrypted XML. The next time the
application starts it reads, decrypts, and sends any pre-existing
changes to the server and gets a new dataset.
My problem:
If there are schema changes made to the typed dataset in, say, version
2.0 it may make the locally persisted dataset written in version 1.9
unable to be loaded into the new version and data could be lost.
Because losing data is totally unacceptable to the business in this
case, I've got to find a way to load that older version's dataset and
then convert it to the new version then send it to the server as the
new version's type.
Any ideas on typed dataset versioning?
Thanks for your help,
Scott R. Jones
Coventry Health Care,
sxjones2NOSPAM@cvtIXNAYONTHESPAMAYy.com
- 13
- ADO >> Extra DataColumn's in DataTableHave a strange problem using a sproc to populate a DataTable.
The sproc itself is fairly simple and returns a selection of columns from
three tables, a master table and two additional tables which are joined via
a LEFT JOIN.
The resultant DataTable schema after a fillschema looks good however after
a 'fill' the DataTable has two extra columns at the end which represent the
unselected columns from the two LEFT JOIN tables. These columns do not form
part of the SELECT statement yet are appearing in the DataTable with all
values set to null.
I have tried the same query with a DataReader and see the correct columns
(obviously executing the same sproc from query analyser shows the correct
column set) therefore it appears to be a DataAdaptor issue which is somehow
pulling down these unselected columns. This problem is a right pain as the
I am binding a DataGrid to the DataTable via a DataView and the extra
columns appear at the end of the grid.
I know I could remove the columns via TableStyles however I might change
the database schema at some point and I would need to know dynamically at
run-time which columns were garbage and at the moment I can't see any
properies on these columns which I could process against.
This looks like a bug to me therefore interested if anyone has come across.
Can post sample code (c#) and sproc if anyone would like to see.
Regards
Paul
- 14
- Microsoft Project >> MI5 Persecution: Goldfish and Piranha 29/9/95 (5575)I just thought I'd let you know what I've been reading into the
"Crusader" spam. I don't want to post this to usenet because somebody
might try to tie that in to my posts in some way (someone already has, in
uk.misc).
First of all, I'd like to ask you to believe that my phone line in my
apartment is bugged, and has been for many months. I have moved a couple
of times this year, but "they" have faithfully been on my trail.
Anyway, let's suppose my phone line is bugged. Now, when I talk to my
internet service provider, it's over a SLIP (now PPP) connection. So if
you wanted to bug what was said, either you'd listen in over the line and
have to decode the transmission, or you could go to the service provider
(more difficult) and ask them to decode a particular user's connection.
OK, so now they're listening to everything I do over my SLIP/PPP
connection. A couple of months ago I was messing around with faking
articles through nntp servers and through anonymous remailers. I chose a
nice inconspicuous newsgroup for my little tests, something no-one would
ever notice. Guess which newsgroup I chose??? Yes, _FISH_!!! or
rec.aquaria to be precise
And guess what articles I tried to post? Goldfish, Koi carp and, you'll
never guess... PIRANHA!!! The goldfish article and the Koi went through,
but the piranha didn';t appear.
by now you probably think this is too silly for words. But if you look in
the papers a few eeks ago you will find John Major, Tonny Blair and Paddy
Ashdown sharing a "private joke" about Major's sunburnt goldfish. We
haven't had anything about Koi yet (they must be too dull ). Now, sent by
someone who clearly knew what they were doing (they chose an Italian
backbone site for their launch point) we have many thousands of messages
to people all over the globe. All about piranha, and with the punchline
"that gives you something to think about, doesn't it?"
The way it works is that they're trying to kill two birds with one stone
again. I don't knoiw why they should be against these national alliance
people, but my interpretation is that they simultaneously try to
discredit them, and stem the flow of Corley articles.
=================================================================
In article <DFnE55.8tF.0.bloor@torfree.net>,
Mike Corley <bu765@torfree.net> wrote:
>
>John J Smith (J.J.Smith@ftel.co.uk) wrote:
>
>: b) we do know who you are. Or are you someone else we don't know about?
>: You are currently known as "That bloody persistant net nutter, who's
>: expanding from uk.misc to the rest of the world".
>
>I think the point I was trying to make is that I could tell you things
>from my personal life, at home and at work, which would add credibility
>to my story. But if I named people, then (a) they would object violently
>to being included in this shenanigans, and (b) I would be revealing my
>identity which would be bad for my personal life and my work life. Of
>course some people in my personal life, and at work, do know who "mike
>corley" is. But at least we're observing a studied silence for now.
:People can always be called "MR X", to save them being named.
:
:I'm completely perplexed as to what you mean by b). Revealing identity?
:To who? And why would this be bad for any part of your life when you
:already have a less than respectful reputation here?
I'll just enumerate one or two things that I can still remember. Sometime
around August/Sept 1992 I was living in a house in Oxford, and coming out
of the house was physically attacked by someone - not punched, just grabbed
by the coat, with some verbals thrown in for good measure. That was something
the people at work shouldn't have known about... but soon after a couple of
people were talking right in front of me about, "yeah, I heard he was
attacked".
Again, one I went for a walk in some woods outside Oxford. The next day,
at work, someone said "you know he went to the forest yesterday".
I don't want to put details on usenet of what happened because to do so
would be to risk it happening again. If you put ideas in peoples' heads
then you can find them reflecting back at you, and I don't want that.
Also I can't remember that much from three years ago. From november 1992
I started taking "major tranquilizers" and just blotted the whole thing
from my mind.
>This is a feature time and time again, that the security services
>(presumed) get at you by manipulating other people around you to get at
>you. If you have their contacts, manpower, resources and technology then
>you can do that sort of thing.
:But why? Are you a threat?
They pretend they "have" to get at me. After the first few weeks they had
to find a reason to spy and abuse. You can't abuse someone unless they're
in the wrong in some way. What I did "wrong" was to be ill. So it became
"nutter" and "monster" and "he's going to attack us" coupled with
"ha ha ha, he can't do anything to defend himself, it was so funny". That
obvious contradiction within their propaganda is something they
blithely ignore.
:So, the Security Services never *actually* appear, and you assume that
:they get someone else to do your dirty work. This is a bit of a big
:logical step, here: That person doesn't like me, or is causing me trouble,
:it's not because they've got problems themselves, it must be the "Security
:Services". Yes. Because people are infallible. Or is there more?
A single source is indicated because of the range of harassment.
BBC + Capital + manipulated_public_at_large + set_up_situations,
what does that add up to? Add in the technology to carry out the
covert spying and the manpower and knowhow to follow you around for
five years without being spotted. It smells very much of the security
services, because there is no other organization (to my knowledge)
which does the things I've seen these people do.
Remember, they have deliberately chosen the softest of soft targets
to victimize. They purposely chose a mentally ill person who they thought
would be likely to kill himself anyway, so that they could get away with
murder.
And in all likelihood it will have started as a personal vendetta by someone.
Who could that be? I don't know, but I can give you some clues.
The first possibility (deep breath) is that someone from my college set me
up. Six years ago I graduated from university in the UK, during the last
year there I was steadily getting more and more ill. I know that I was
talking in my sleep; although I don't know what I was saying, it got
me a reputation, and if someone from my college talked afterwards to
the "wrong" people then that could be the reason for all that has followed.
I think that's the strongest contender for source. Directly beneath my
room lived another bloke who frequently had his friends round late at
night, after the time that I went to sleep. So they could have heard what
I was saying in my sleep, and that could have got me the reputation for
"talking to myself".
What I don't know is why that should have rebounded a year after I left.
You'd think it would have happened sooner; it's a bit odd to wait for a
year and then start abuse. That leads me to question what in particular
happened around May/June 1990 for them to start then.
>What I don't know is how it looks from the other side, from the side of
>the people who are being manipulated to get at me. On a couple of
>occasions I have challenged people to tell the truth of the matter, but
>they have alwats ducked the challenge.
:Have you ever considered the possibility, that you have made a mistake, and
:the people don't know what you are talking about?
Yes. I am currently considering the possibility that some people around me
know only what is being posted on Usenet, and have not been "contacted"
by "them". But I _know_ that others have been contacted.
:What words? Are they in common use? Could they be a catchphrase of a
:popular comedian?: "Nice to see you, to see you nice"?
In England the all-time No. 1 is "nutter". Easter this year, returning home
from Clapham police station to report five years of harassment ("we're not
saying it's happening and we're not saying it isn't happening"), another
"not happening" incident of harassment when a cowardly little slut did her
country proud by yelling "nutter, nutter, nutter" in the face of the
hated enemy.
What can you do about that? You can't yell abuse back in their face, because
they know they're supported by their peers, by the media, by the murderers in
the security forces. You can't put them down when the fascist establishment
is on their side. You can't hit them, because they would deny their abuse,
they would deny knowing anything, and bring charges against the "nutter"
who attacked them "at random".
>You know, you're
>passing saomeone, they're hardly going to construct an argument for your
>benefit, so they work a word of abuse into the conversation which they
>can giggle at.
:Abuse such as what? We're all adults here, we can take it. Is this abuse
:aimed at you? How can you tell it is?
I think I've said already what the words are. Thing is, at any given time
the language is consistent. In January everyone's calling you X, then a
few weeks later people stop calling you X and start calling you Y.
You can tell it's aimed at me, because when people repeatedly say the same
words are you walk past, then laugh, you would have to be hard of
understanding not to recognize it.
>Or they repeat something that's been said somewhere else... the PE thing
>being a case in point. PE says it, then other people pick up the refrain.
:Remind me who PE is again.
PE = "Private Eye"
>: >To give you an example, which I mentioned in another posting. In around
>: >October 1992, Private Eye ran a cover with the heading "Major's support
>: >lowest ever", with John calling to Norma on the cover "come back, Norma".
>: >Only one obvious interpretation to that, isn';;t there? I certainly
>: >thought so when I saw that cover. Wrongo!! Down the pub with people from work
>: >Simon says to phil, "don';t you think it's wrong then?" phil says, "well
>: >private eye are usuallyright"..."hislop strikes again..
>
>: Erm. Mike? Heeeelllllooo? What are you on about. What is the other
>: interpretation then? Norma having an affair? Seems a bit wrong, with the
>: heading "Majors support Lowest ever"...
>
>No, this one isn't obvious , it really does need to be explained. I
>certainly didn't understand it when I first saw it. You see, the kernel
>of vitriol is in the words "come back". At the time, the themes of
>abuse were centred around interpretations of those two words (stretch your
>mind a little bit, I don't have to spell it out for you, surely).
:You did in your mail item.
:
:You seem to be scouting about something called a "Double Entendre". The
:inference being "Come" = Ejaculation, "Back" = Anus (not the first part
:of the body I would have went for, I would have foolishly gone for "Back",
:silly old me).
:
:You see to have picked a sodomy double entendre out of a Private Eye
:headline. They are everywhere. The English language has much double
:meaning in it, and if you put your mind to it, you could pull a double
:entendre out of a randomly chosen page of the bible. So what?
>The point is that when Simon pointed it out to Phil, he did recognise
>what it meant after a moment's thought... and so did I... and so did the
>people who repeated it several times later... so however murky it may
>seem to you, that is the meaning they intended it to have...
I still don't really know if the meaning was intended when that headline was
written, or if it was simply "found" after the fact. The reason I think it
might be the former is that I got quite a lot of abuse along the lines of
"sound-alike" or "double-entendre" at work, in particularly from Steve.
So "double" inevitably came to mean split-personality, "two people in one";
"back" inevitably came to mean "backside", "come" inevitably meant you-know-
what, "split" (well, we'd better split now) again you can guess, "bent" (of
a similar bent), the list goes on forever. These aren't "nice" double-
entendres intended for comedy, they're nasty words to humiliate and cause
pain. If I could turn the clock back three years then I would sue my
former employers for harassment and I would almost certainly win. I had to
take pills after a year of Oxford, so they wouldn't be able to lie their
way out of it. Actually, I could still take them to court - the main
obstacle being that three years after the fact is a bit late and much
of what happened, the details that would be necessary for a case to go
to court, has just been obliterated by time.
: Smid
==============================================
From: flames@flames.cityscape.co.uk (Peter Kr|ger)
Newsgroups: uk.misc,soc.culture.british,alt.conspiracy,uk.media,uk.legal
Subject: Re: Mike Corley - a (helpful) suggestion
Date: Mon Oct 2 05:43:42 1995
In article <812551172snz@objmedia.demon.co.uk>, Snail <snail@objmedia.demon.co.uk> says:
>Indeed, I feel that my Usenet access is censored simply because I don't want
>to download groups he is partaking in, because of his behaviour.
>
>I wasn't that bothered, but I am starting to get seriously pissed off
>with him. Which takes a lot.
Hi Snail
This person Corley seems quite interesting for three reasons. I put the
following at the end of a post in another thread just to see if he was
reading any other threads in uk.media.
It seems he is probably not.
-----------------------------------------------------------------------
Heres an interesting little story from back in the early days of CCD
technology. There was this miniature camera which was designed to fit
behind the infrared receiver lens of the remote control system (just
beside the IR sensor itself) the camera clocked out the data in 256 lines
of 256 pixels from a Fairchild chip and fed it out, a line at a time,
into the VBI within the TV set itself. The signal could be picked up
remotely from a standard license detector van from where it was stripped
out of the surrounding RF signal and relayed back to the TV station where
it was displayed as a slowscan monochrome image in a corner of the news
readers monitor.
5575
- 15
- Dotnet >> Reporting 'Drilldowns'I think I read somewhere that if you link 2 tables together in a dataset
then a datagrid will automatically create a drill down. Is this true?
I have a system where people input data based on Company | Date | Price and
I now have to make a summary web application where it will display:
Each company with a total....
drilled down into each month summary...
drilled down futher to each transaction in that month.
Ie
+ Company 1 | £100
- Company 2 | £300
+ 04/2003 | £100
- 05/2003 | £50
01/05/2003 | Description 1 | £5
02/05/2003 | Description 2 | £10
etc....
+06/2003 | £150
+ Company 3 | £200
What do you people think, is this going to be easy to do?
Thanks all
Gav
|
| Author |
Message |
Atonal

|
Winforms >> No Touch Deployment Error Question
HI,
I am getting this error when I try to create a new instance of one of my
forms.
--
System.Security.SecurityException: Security error.
--
This error is thrown in the CTOR on the MyBase.New() call.
At this stage I have already created and displayed several other forms right
before this step, so it doesn't make sense why this particular form would
fail it is just a Standard windows form, with Menus/toolbars on it. It
doesn't even tell my what kind of security error
TIA,
--
Paul
DotNet361
|
| |
|
| |
 |
| |
 |
Index ‹ DotNet ‹ Winforms |
- Next
- 1
- Visual C#.Net >> MSMQ triggerApart from designing a timer to examine the queue, I know
that the new version of MSMQ over XP/2003 platform
provides a way called 'MSMQ trigger', anyone had some
experience of using it from programmer's point of view?
thanks in advance
- 2
- Visual C#.Net >> Running code compiled in Framework 1.0 with Framework 1.1Hello,
We have an application written using Framework 1.0 (VS2002), we have
deployed it to a server that only has Framework 1.1 installed, the
client does not want to Install Framework 1.0 because it might have an
impact with other .Net applications written using Framework 1.1, so
rather not getting into a debate with the client I have agreed to
investigate if we could get our application to run using Framework 1.1
without recompiling it. Is this possible, if so how?
Thanks,
- 3
- Net Framework >> Wrong Byte order when writing with a binary writerHi!
I have the following problem:
I want to write an integer value (e.g. 14) with a binarywriter.
The written file contains the following entry:
0E 00 00 00
I want the entry to be the following:
00 00 00 0E
Does anybody know how to get the desired result (Language vb)?
Thanks in advance,
Marko
- 4
- 5
- ADO >> SqlDataAdapter and DataSetWhen you call Fill method passing a DataSet object and table name, is that
table name associated with the SQL Server table name or just the moniker
that will be attached to the generated table inside thee DataSet's
TableCollection? What if you call Fill() without passing a table name, does
SqlDataAdapter generate some name?
- 6
- ADO >> Convert System.Transactions.Transaction.Current to System.Data.Common.DbTransaction?I have been trying to figure out a way to convert
System.Transactions.Transaction.Current to System.Data.Common.DbTransaction
with no luck so far. Is this even possible? I am using the Enterprise
Library, and several of their calls take in a transaction, but it is of type
DbTransaction. I have tried straight casting, but it is not compileable.
DbTransaction transaction = (DbTransaction)Transaction.Current;
Error 1 Cannot convert type 'System.Transactions.Transaction' to
'System.Data.Common.DbTransaction'
- 7
- 8
- Visual C#.Net >> Windows Services and System.Web.UI.Page.RequestHi.
I am wondering how to handle AbsoluteUri values inside windows
services?
It seems that the absoluteuri is called from the System.Web.UI.Page
namespace
which is not allowed inside a windows service (that I am aware of).
But, I need to call the following inside my service:
Request.UserAgent,
Request.UserHostAddress,
Request.Url.AbsoluteUri
Since I can't use the Request object (in the sense of
System.Web.UI.Page),
how do I access the above values from within my service??
Thanks for your help.
Peter
- 9
- Winforms >> New to WindowsFormsHi I am learning windows fomrs and started with the sample in the quickstart
tutorials and I am not able to display the control on my aspx page.
I created a control library with one simple control having a panel and a
button. panel's visible property is false by default and I added color to
panel.
On the button press event , I set the visible property of the panel to true
to show the panel.
This control is created as test1.dll and then added to a web application and
added to aspx page as an object and calling with the classid property to
display the control. I have also set the objects property "VIEWASTEXT' .
The problem is that the aspx page does show the placeholder but does nto
display the control.
what am I doing wrong?
Please advice.
thanks
sam
- 10
- Visual C#.Net >> Cannot call Invoke or InvokeAsync on a control until the window handle has been createdHi
I am having this InvalidOperationException with message Cannot call Invoke
or InvokeAsync on a control until the window handle has been created
This is raised when i try to invoke a method with arguments
I need to do this as the method is being called Asynchronously from
elsewhere using delegate's BeginInvoke method.
The form is well created/initialized yet the messages states otherwise.
Cant extract a sample code out of my app.
Let me know if the code is needed for the problem.
All controls on the form are in a panel. The form itself isnt show, but the
panel is shown as a child control of some other panel. Can this be the
problem.
Thank you
rawCoder
- 11
- Microsoft Project >> Printing in MS Project 2007Does printing in MS Project 2007 just not work like it did in 2003.
I am having a terrible time getting all my info on my gantt chart to print
and it will not do a "fit to" at all.
Starting to wonder if I should just go back to 2003.
Extremely frustrated.
- 12
- ADO >> Tablemappings and join?Hi,
I have this sql command:
Select recommendation, timescale from audits, auditItems where
AuditItems.ParentAuditID = Audts.AuditID and Audits.SupplierId = '" &
ComboItem.Value & "'"
So what do i set tablemappings to?
I usually do this:
myDataAdapter.TableMappings.Add("Table", "Audititems")
but that doesnt work... Any ideas?
Thanks,
Dan
- 13
- Dotnet >> Smart Client DeploymentI am trying to deploy my Smart Client (it accesses a Web Service) on to a server.It works fine in my machine and also works when others access it from my machine.
But when deployed to another server it does not run and opens the debugger.I tried with Full trust yet it does not work.
Please help me out.
- 14
- Net Framework >> Updating a windows forms control from a threadI've gotten this question a couple of times in interviews and I don't know
what they are looking for:
How do you update a control's property, such as a textbox.text property,
from a thread, in .NET? It seems to me you just update it normally. What
are the interviewers looking for here? Thanks.
- W
- 15
- Microsoft Project >> "resource usage"- view errorHi..
I open a Project and use the reource-usage view. I choose a resource and
look at the actual work by other enterprise Projects. The actual work of
all the other projects is 0 although I am sure thet they are not .
What is the reason for this problem?
Thanks..
|
|
|