You need to configure your samba server to have shares visible to windows. By saying Start samba services that means you are starting the samba daemon. See of there is a samba config app that can help you configure it. otherwise, now is a good oppurtunity to learn text file config!
My Samba config file is found in /etc/samba/smb.conf the man pages on smb.conf should be quite helpful, but the basics of what u need in that file are :
[global]
server string = [the description of yr pc]
workgroup = [workgroup name]
netbios name = [your computers name]
#the next line is important, as it means that the permissions here are set #by share, this is the simplest for windows sharing
security = SHARE
encrypt passwords = Yes
log file = /var/log/samba/log.%m
max log size = 50
socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
dns proxy = No
#the following has to do with your printing... not entirely sure what to do :P
printcap name = lpstat
printing = cups
#a sample share
[home]
comment = home
path = /home/geoffrey
guest ok = yes
read only = yes
as i sed read up on the man pages, they are quite useful