836 Posted Topics

Member Avatar for bhavna_816

Then you need to check the extension and specifically not just launch the ppt file as its put in the folder, but launch the slide show.

Member Avatar for LizR
0
623
Member Avatar for darkyere

Firstly without code tags thats kinda hard to read Secondly, you dont mention in what way your time remaining hasnt worked.

Member Avatar for LizR
0
191
Member Avatar for GT2010

I would suggest you use an OK/Cancel button system, as while an item could even be considered valid, doesnt mean the user doesnt want to change it - it also means you only have 2 ways of leaving your form, the buttons or they hit close.

Member Avatar for LizR
0
154
Member Avatar for Renukavani

the do work will run whenever you tell it, however, if you repeatedly call it before its finished processing the last - try debugging and see what happens.

Member Avatar for hieuuk
0
101
Member Avatar for emilio

Depends I guess a little on when that code runs (which you havent shown) or, why you dont just use the draw method - for which search this forum ther are a number of examples

Member Avatar for reena12
0
1K
Member Avatar for darkyere

There are plenty, however, ive not tried running them under vista. Try posting on the embarcadero forums - if anyones going to know people there will.

Member Avatar for LizR
0
225
Member Avatar for Renukavani
Member Avatar for eljack
Member Avatar for Duki
Member Avatar for FlamingBlade

Try putting your slashes round the correct way, eg file://webpage/whatever.html

Member Avatar for FlamingBlade
0
165
Member Avatar for |brando

Im surprised that classes would stop you seeing the exported function, but then Im not up on dev-pascal.

Member Avatar for LizR
0
190
Member Avatar for 2Two
Member Avatar for LizR
0
63
Member Avatar for 2Two

Id guess you'd want passive ftp. Which a number of ftp apps do by default.

Member Avatar for LizR
0
125
Member Avatar for emilio

Open does except relative paths, however, you have to be sure of where you are vs where your file is which is often unlikely. So, if you have your app, and you are sure you are in your exe's directory, then opening "Data/file" will work - but, for example, excel …

Member Avatar for LizR
0
225
Member Avatar for bluestar123

Well, as per the stickies, you show us what you have, explain the problem you have with it, we'll help you try fix it, we wont do it all for you

Member Avatar for leelarani
0
227
Member Avatar for sivak
Member Avatar for Rocket452
Member Avatar for LizR
0
166
Member Avatar for murderotica
Member Avatar for sivak

I had written out a big long thing, but it dawned on me STOP ASKING US YOUR HOMEWORK QUESTIONS.. Do your own research

Member Avatar for LizR
0
72
Member Avatar for superl

Well then, you need to supply the additional data as in your own words "none of them accept null value". You cant expect it to work. [code]36 foreach (FileInfo fi in dir.GetFiles()) 37 { 38 39 newrow.Song = fi.ToString(); // Getting filename 40 newrow.SongUrl = fi.FullName; // Getting full path …

Member Avatar for superl
0
97
Member Avatar for Gaurav arora
Member Avatar for polo_coins

String builder can have advantages when buidling up output. So instead of a ton of s += titletext; s += "\r\n--------"; etc you can just do sb.append(newtext); sb.appendline("---------"); it acts almost like a buffer, however if you've done much coding before it does feel unnecessary and isnt the way your …

Member Avatar for polo_coins
0
85
Member Avatar for sfrider0

You can indeed - in fact this was covered in a similar question in this forum recently. You need to override the drawing and draw it in yourself (the discussion was about dataviews but the prinicpal is always the same)

Member Avatar for ddanbe
0
116
Member Avatar for Thew

Check where it thinks its finding the file xmlintf and look in your delphi paths in case there are others.

Member Avatar for LizR
0
36
Member Avatar for darkyere
Member Avatar for LizR
0
292
Member Avatar for IT_Techno

If server side the cookies only valid 30 days, you would need to make them go through the process to generate a new valid one

Member Avatar for LizR
0
124
Member Avatar for joanne88

So. [code] private static string asterics(double grade) { return new string(' ', (int)grade / 2) + "*" + new string(' ', 50 - (int)grade / 2); } [/code] The first clue is look carefully what you told it in the above code. Now you should see why its not full …

Member Avatar for LizR
0
83
Member Avatar for faizurrahman

As long as the field is boolean, you can assign it by clicking the little arrow and changing the field type to checkbox

Member Avatar for LizR
0
75
Member Avatar for Gaspacho

no, closing the login form would close the app. This is a common issue and the general route is that the main form would open the login form, if login is successful the main form then loads all the things it needs, should it faill it then closes. (of course …

Member Avatar for LizR
0
72
Member Avatar for murderotica

well as long as you made an instance of your form it would go something like [code]frmProgress.Progressbar.Value=0;[/code]

Member Avatar for LizR
0
124
Member Avatar for shaviraghu

Try running it in debug mode, and it will show you the line as well as perhaps a slightly more useful error message. Line 17 it refers to is the { after the form class declaration so is of no help. You've made a number of assumptions in your code, …

Member Avatar for LizR
0
82
Member Avatar for sfrider0

While having it in a separate function is best Create a boolean variable, remove the returns and in their place, put the boolean variable = true or false accordingly. Then move the whole block into the first and test the value of the boolean at the end as to wether …

Member Avatar for sfrider0
0
208
Member Avatar for ruelk

You can either make an event on your main form which you tie into the button on your second form (messier) or You can create a method which you send the data from your second form, to your first form. So the first form handles all its updates.

Member Avatar for ecoloney
0
198
Member Avatar for SMG0723

Hmm, no code tags makes it hard to read - why not tell us what errors you're getting, and what you've tried to fix it so far

Member Avatar for LizR
0
66
Member Avatar for carobee

put a \ in front of it, so rather than "this is a "test"" which doesnt work its "this is a \"test\""

Member Avatar for dickersonka
0
94
Member Avatar for chortlehoort

Personally I hate the idea of using the load event. Anything that runs in the load event which causes a block can leave the poor soul wondering if they ever launched it. What is a good idea is a timer, pass the timer the work and have the form load …

Member Avatar for LizR
0
73
Member Avatar for ddanbe

Does it have to be IE? If you just run the link as a system call, it will open the default browser.

Member Avatar for LizR
0
187
Member Avatar for karthi_selva
Member Avatar for smnadig

Sure thats your IP address and that you dont have a dynamic one? On changing your code to be my local IP and dropping the chat client part as it was a test, and putting in a simple receive, acknowledge and disconnect.

Member Avatar for LizR
0
126
Member Avatar for khoshBlagh
Member Avatar for richasr1

Well. Think about what you know about lifts. Go with the theory of 2 lifts, one you have more than 1 lift the logic is the same you just have more options. Lifts go 1 of 2 ways. up or down. A lift at floor 1 told to go up, …

Member Avatar for ddanbe
0
599
Member Avatar for ichiwa

Yes. Everything is possible. However, thread jacking is considered bad manners.

Member Avatar for LizR
0
74
Member Avatar for emmann

Take a look at the indy components, they are the easiest to use. (and there are plenty of examples)

Member Avatar for ebi1
0
247
Member Avatar for deepas

There are a shed load of posts in this forum about reading, writing and manipulating excel through c#, most of which contain code. Please search, then when you get stuck on a specific bit and youv'e written code and its not working, post the code, and we'll try help.

Member Avatar for LizR
0
120
Member Avatar for IT_Techno
Member Avatar for LizR
0
119
Member Avatar for sumitbaks

Your installer should overwrite the file, giving them the option of course to keep the old one if they are really sure they want to

Member Avatar for LizR
0
145
Member Avatar for karthi_selva
Member Avatar for bogdanAR

Hope you enjoy the spam you'll get for posting your email on a bulletinboard readily searched by search engines.. Spammers are gonna love you. Failing that you could start a new thread with your new question and explain it clearly, and more usefully explain the reason why you cant work …

Member Avatar for ddanbe
0
126
Member Avatar for karthi_selva

it appeared on my form when I pasted that into a button and then ran it and clicked it.

Member Avatar for LizR
0
72
Member Avatar for karthi_selva

The End.