15,991,072 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Visual Basic questions
View .NET questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by ekipongi (Top 29 by date)
ekipongi
16-Feb-15 17:46pm
View
Hi AdamASPGeek,
Thank you and noted. I got some reseponsed for my emails to such service providers and they have said the same so should try this out.
Thanks again.
ekipongi
10-Oct-14 0:25am
View
Thanks George.
Will definately consider your recommendations.
ekipongi
9-Oct-14 21:37pm
View
Thanks. I will check this out. Yes, there are plenty but I want to just get the scanner so I can write the codes so I have the source codes. A scanner that can read price would be preffered too so I will check on this.
ekipongi
9-Oct-14 21:25pm
View
Hi Bryce,
I have none, and I have not yet decided on one as yet. There are many out there but I just wish to get one that is cheaper and can be able to work with an application that I can develope in VB.net. If you can recommend one would be good, and how I should use that for a VB.net application.
Thanks.
ekipongi
27-Nov-13 16:33pm
View
What do you mean by static column name? Explain further by providing dummy data and what you'd want to achieve.
ekipongi
4-Nov-13 19:48pm
View
For the benefit of others below is the answer. After a bit of reading on Pivot in ms sql got the answer that I wanted.
select *
from
(
select Name, ID, Amount
from Table1
) src
pivot
(
sum(Amount)
for ID in ([A], [B], [C])
) piv;
ekipongi
4-Nov-13 17:12pm
View
I want a column of distinct name, and the actual data in the ID which are A, B and C to be columns and the Amounts to be the data for the ID columns. For clearity, in my initial table as is shown above there are 4 columns, Name, ID (which contains A, B & C), Amount and the Date. I just want to display distinct names with 3 columns as A,B & C. the amount should be under associated ID as is shown in the 2nd table above.
ekipongi
2-Oct-13 21:32pm
View
Thanks _Damian S_
It worked as I wanted.
ekipongi
8-Jul-13 21:35pm
View
ThePhantomUpvoter, the code I posted don't have any error as is confirmed with a simple windows form application. It's working fine in the Windows form apps but I just need a windows service for this so asked. How will you do debugging to check for errors when creating a windows service if that is what you meant?
ekipongi
8-Jul-13 21:20pm
View
Hi Sergey Alexandrovich Kryukov, This is just a test to see if this can work in Windows Service as I'm working on a project to check if files exist in a location and if it does the contents will be copied while adding new header and footer lines to a new text file which will then be copied over to the processed location. So i posted the above to seek assistance in creating the service to copy the file for one location to another first.
ekipongi
27-May-13 1:20am
View
Thank you TnTinMn. You have been a great help to me. I will try and modify your code to see if that will work as I required. Thanks once again.
ekipongi
26-May-13 21:39pm
View
Yes that's correct Dave. But i'm just lost as to how I'll work this out using the substring and the looping to get the strings I wanted. I have worked on this project and it's really tedious and I'm lost for this so please assist with the code if possible.Thanks.
ekipongi
26-May-13 21:14pm
View
Thanks ThePhantomUpvoter. Yes, I have used the String.Substring before but not too sure how to do that with looping to get the values/strings as I want from this. Note that the data in the files are at times more or less, etc.
ekipongi
23-May-13 2:45am
View
Thank you so much OrigionalGriff. Got working but I'm stuck on the message bit as highlighted in the initial question posted above. How to check if F exists for each message.
ekipongi
23-May-13 2:21am
View
seen the substring method but not really sure how I'd use that method to grab the date from the header. really need a help in the code to get this thing working. Thanks.
ekipongi
23-May-13 1:46am
View
Thanks OrigionalGriff. The above padded sample file was sent to me. The code extracts above I posted is to clarify the question here. What I want to do is grab the date from the header in the above file sent to me. how could I do that? Please assist with any code sample to grab the date which starts at the 31 position and finishes at the 80 position?
ekipongi
23-May-13 0:55am
View
Thanks _SA for the reply anyway. I'm just showing how the text file has been created from teh code extracts above. The length for the Header is 100 which is padded for each header details to cover the 100 length given. My issue is How do I read such a file and grab the Datefile from the header.
ekipongi
22-May-13 23:47pm
View
Thanks _Damian S_. Could you please post some codes for that. I'v worked on it and I'm really stuck and need assistance urgently. Thanks
ekipongi
22-May-13 23:45pm
View
These are the padding values for the headers. E.g H100 has a padding of 9.
ekipongi
22-May-13 19:19pm
View
Thanks TnTinMn for the assistance. Got it working.
ekipongi
22-May-13 1:59am
View
Yes, that's what I'm trying to do but I don't know how and I'm stuck. If you can please assist me with the coding.
ekipongi
22-May-13 1:01am
View
Thanks Ramanjaneya002. It will have 3 letter word all the time but it would be good if the code can also check for any number of letters infront.
ekipongi
21-May-13 20:01pm
View
Thanks Aarti for the reply. Didn't tried your code but I guess it would work. Thanks anyway.
ekipongi
21-May-13 20:00pm
View
Thanks Basmeh. Modified your code and got what I wanted. Thanks
now Could you please assist here again? now I want to check a specific value (:32B:) in a text file that contains millions of data and get the values (actual figures/amounts) excluding the currency. E.g. check if :32B: is found in the file and if it is found then grab the next value after this, which would be the amount. In essence it would be like :32B:JPY12561694,00
So pull out the 12561694,00 excluding the comma. So the actual data that I want to get is 1256169400
ekipongi
12-May-13 20:51pm
View
Thanks _Damien S_. I have tried your suggestion but the issue is still there. What I'd want to acheieve is that for each file in the inward file location copy the details to a new text file created in another location with new header and footer details. If there are 10 text files in the inward location then file processed would be 10 in a processed location.
ekipongi
23-Jan-13 16:32pm
View
Thanks Kanjolia, I have used grouping already and couldn't get what I wanted. A thorough explanation or answer as to how to get to the solution of the above issue would be good.
ekipongi
18-Sep-12 17:58pm
View
Thank you very much Ernest. I downloaded what you have put here http://sdrv.ms/QjleCk. However, I can't restore the DB onto my MS SQL Server 2008 Enterprise edition. Could you please send me the scripts of the DB objects so I can them? I really need this to work. Please assist as the DB can't be restore as it's in Express Edition. Now I have done the above already but I'm getting the following error when trying to insert new resume; Please assist. "The INSERT statement conflicted with the FOREIGN KEY constraint "FK_tbl_users_pKeyUser". The conflict occurred in database "WORDLOAD", table "dbo.tbl_users", column 'pKeyUser'. The statement has been terminated."
How do I insert new resume and how do I retrive the saved resume. Do I have to input the Firstname and the Lastname and add the Resume for the client. It's not accepting my input for the names into the textboxes except from the datagridview. Please assist...
ekipongi
18-Sep-12 17:50pm
View
Thank you Wes, I have created a MS WOrd document and saved into the above directory as (C:\Documents and Settings\u13901\Desktop\Projects\Test.doc). When I upload the MS WOrd from the DB onto that there are funny characters being written onto the Word DOcument. How do i change that to write the resume details as saved? Please assist.
ekipongi
22-May-12 20:01pm
View
Thank you OrigionalGriff and others for the comments. My apology for using the term virus as I was confused with what right term to use. I'm not working for anyone nor working to gain funds. But out of curiosity I want to create it as a file that prevents others from copying the media files from the intended media, DVD or CD.
Show More